import * as React from 'react';

/**
 * Page — from @kuppwest/apple-clean@0.1.0.
 */
export interface PageProps {
  children: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}

export declare const Page: React.ComponentType<PageProps>;
