import React, { FC } from 'react'; import { ActionToolbarProps, PanelProps } from './components'; export interface PagePropsStrict { /** Aligns the content within the page */ align?: 'left' | 'center'; backgroundColor?: 'default' | 'white' | 'neutral-0' | 'neutral-10'; /** Adds one or more classnames for an element */ className?: string; /** Header for the page */ header?: React.ReactElement; /** Footer for the page */ footer?: React.ReactElement; /** Modifies the max-width of the page. Wide removes the max-width, narrow shrinks it. */ maxWidth?: 'default' | 'narrow' | 'wide'; /** If false, a min-width is applied to the page */ minWidth?: boolean; /** Content for an optional Sidebar */ sidebar?: React.ReactElement; /** The padding between the page and the parent content */ spacing?: 'none' | 'relaxed'; /** ActionToolbar Props */ actionToolbar?: ActionToolbarProps; /** Panel Props */ panel?: PanelProps; } export interface PageProps extends PagePropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const Page: FC;