import type React from "react"; import type { BoxProps } from "@mui/material/Box"; export type PageConfig = { isPublic: boolean; }; export type PageProviderProps = { children: React.ReactNode; }; export type PageProviderComponent = (props: PageProviderProps) => JSX.Element; export type PageProps = { children: NonNullable; } & Partial & BoxProps & React.RefAttributes;