declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            gap: string;
            position: string;
            bottom: string;
            left: string;
            width: string;
            height: string;
            borderRadius: string;
            boxShadow: string;
            backgroundColor: any;
            overflow: string;
            '& .SCCalendar-header': {
                width: string;
                height: string;
                backgroundColor: any;
            };
        };
    };
};
export default Component;
