declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            width: string;
            '& .SCCommentsFeedObject-no-comments': {
                padding: any;
                paddingLeft: number;
            };
            '& .SCCommentsFeedObject-comment-not-found': {
                padding: any;
            };
            '& .SCCommentObject-root': {
                '& > div': {
                    background: string;
                };
            };
            '& .SCCommentObject-skeleton-root': {
                background: string;
                boxShadow: string;
                border: number;
                margin: any;
                '& .SCBaseItem-text': {
                    '& .SCWidget-root': {
                        '& .MuiCardContent-root': {
                            padding: any;
                        };
                    };
                };
            };
            '& .SCCommentsObject-skeleton-root': {
                marginBottom: any;
            };
            '& .SCCommentObjectReply-root': {
                background: string;
                '& .SCCommentObjectReply-comment': {
                    marginBottom: any;
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {};
    };
};
export default Component;
