declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .SCCreateEventWidget-image': {
                height: string;
            };
            '& .SCCreateEventWidget-calendar': {
                position: string;
                top: string;
                left: string;
                transform: string;
                color: any;
            };
            '& .SCCreateEventWidget-content': {
                padding: string;
                '& .SCCreateEventWidget-title': {
                    textAlign: string;
                    marginBottom: any;
                };
                '& .SCCreateEventWidget-spacing': {
                    marginBottom: any;
                };
            };
            '& .SCCreateEventWidget-actions': {
                padding: string;
                justifyContent: string;
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {
            '& .SCCreateEventWidget-calendar': {
                position: string;
                top: string;
                left: string;
                transform: string;
            };
            '& .SCCreateEventWidget-content': {
                padding: string;
                '& .SCCreateEventWidget-title': {
                    textAlign: string;
                };
                '& .SCCreateEventWidget-spacing': {
                    marginBottom: any;
                };
            };
            '& .SCCreateEventWidget-actions': {
                padding: string;
                justifyContent: string;
            };
        };
    };
};
export default Component;
