declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCCommentsFeedObject-root': {
                padding: any;
                '& .SCCommentsObject-root h6': {
                    paddingLeft: any;
                };
            };
            '& .SCFeedObject-detail': {
                '& .SCFeedObject-content': {
                    '& .SCFeedObject-text-section .SCFeedObject-text': {
                        '& span': {
                            display: string;
                        };
                        '& span:not(:has(+ a))': {
                            width: string;
                        };
                        '& a': {
                            display: string;
                            margin: any;
                        };
                        '& a:hover': {
                            '& span': {
                                textDecoration: string;
                            };
                        };
                    };
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {
            marginTop: any;
            '& .SCCommentsObject-skeleton-root': {
                '& .SCWidget-root': {
                    marginBottom: string;
                };
            };
            '& .SCCommentObject-skeleton-root': {
                background: string;
                boxShadow: string;
                border: number;
                paddingLeft: string;
                '& .SCCommentObject-skeleton-root': {
                    marginBottom: string;
                };
            };
        };
    };
};
export default Component;
