import * as React from 'react'; import type { TLAssets, TLBinding, TLPage, TLPageState, TLShape } from '../../types'; export interface PageProps> { page: TLPage; pageState: TLPageState; assets: TLAssets; hideBounds: boolean; hideHandles: boolean; hideIndicators: boolean; hideBindingHandles: boolean; hideCloneHandles: boolean; hideRotateHandle: boolean; hideResizeHandles: boolean; meta?: M; } /** * The Page component renders the current page. */ declare function _Page>({ page, pageState, assets, hideBounds, hideHandles, hideIndicators, hideBindingHandles, hideCloneHandles, hideRotateHandle, hideResizeHandles, meta, }: PageProps): JSX.Element; export declare const Page: React.MemoExoticComponent; export {}; //# sourceMappingURL=Page.d.ts.map