declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .MuiDrawer-paperAnchorBottom': {
                borderTopLeftRadius: any;
                borderTopRightRadius: any;
                maxHeight: string;
                paddingTop: any;
                '&:before': {
                    content: string;
                    border: string;
                    width: number;
                    position: string;
                    top: number;
                    left: string;
                };
                '& > *': {
                    paddingTop: number;
                };
            };
        };
    };
};
export default Component;
