declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .SCEventInfoWidget-content': {
                padding: string;
                '& .SCEventInfoWidget-title-wrapper': {
                    flexDirection: string;
                    alignItems: string;
                    gap: string;
                    marginBottom: any;
                };
                '& .SCEventInfoWidget-text-wrapper': {
                    marginBottom: any;
                    '& .SCEventInfoWidget-show-more': {
                        fontSize: any;
                        fontWeight: any;
                        padding: any;
                        justifyContent: string;
                        '&:hover': {
                            backgroundColor: string;
                        };
                    };
                };
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {
            '& .SCEventInfoWidget-skeleton-content': {
                padding: string;
            };
        };
    };
};
export default Component;
