import { default as React } from 'react'; import { SxProps } from '@mui/material'; type Props = { sidebar?: React.ReactNode; header?: React.ReactNode; footer?: React.ReactNode; background?: React.ReactNode; sxProps?: SxProps; mainSxProps?: SxProps; children: React.ReactNode; }; declare const AbyssDashboardLayout: React.FC; export default AbyssDashboardLayout;