import { PageProps } from '@wix/design-system'; import { ReactNode } from 'react'; import { CairoEntityPageState } from '../../state'; interface PagePropsWithChildren extends PageProps { state: CairoEntityPageState; } export interface CairoEntityPageProps extends PagePropsWithChildren { children: ReactNode; } export declare function CairoEntityPage({ children, state, ...rest }: CairoEntityPageProps): JSX.Element; export {}; //# sourceMappingURL=CairoEntityPage.d.ts.map