import React from 'react'; import './Page.scss'; export type PageProps = { children: React.ReactNode; onBack?: () => void; onClose?: () => void; title: string; 'data-testid'?: string; }; /** * A page view with a back button in the bottom left, a title at the top, and a close button in the top right. * Back and close buttons will only appear if `onBack` and/or `onClose` callbacks are set. */ export declare function Page({ children, onBack, onClose, title, 'data-testid': dataTestId, }: PageProps): JSX.Element; export default Page; //# sourceMappingURL=Page.d.ts.map