///
import { ContainerProps } from '@mui/material/Container';
import { AppFrame } from '../../app/AppStack';
export interface FrameProps extends AppFrame, Pick {
name: string;
}
export default function Frame({ children, name }: FrameProps): JSX.Element;