import * as React from 'react'; import 'emptykit.css'; export interface PageTheme { fontFamily?: string; color?: string; padding?: string; background?: string; alignItems?: string; justifyContent?: string; } export interface PageProps { id?: string; title?: string; label?: string; customStyle?: PageTheme; children?: React.ReactNode; } declare class Page extends React.PureComponent { render(): JSX.Element; } export default Page;