declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            textAlign: string;
            marginBottom: any;
            '& div:last-child': {
                paddingBottom: any;
            };
            '& .MuiCardContent-root': {
                ' > .MuiButton-sizeMedium': {
                    marginLeft: number;
                    marginTop: number;
                };
            };
            '& .SCFeedUpdatesWidget-button-load-more': {
                textTransform: string;
            };
        };
        skeletonRoot: ({ theme }: any) => {};
    };
};
export default Component;
