import React from "react"; import type { BoxProps } from "@mui/material"; import type { RefineThemedLayoutProps } from "./types"; interface ExtendedRefineThemedLayoutProps extends RefineThemedLayoutProps { /** * Additional properties for the children box. * This type includes all properties of BoxProps, including 'sx'. */ childrenBoxProps?: BoxProps; /** * Additional properties for the container box. * This type includes all properties of BoxProps, including 'sx'. */ containerBoxProps?: BoxProps; } export declare const ThemedLayout: React.FC; export {}; //# sourceMappingURL=index.d.ts.map