declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            border: string;
            marginBottom: any;
            overflow: string;
            '& .SCBaseItem-content': {
                alignItems: string;
                '& .SCBaseItem-text': {
                    marginTop: number;
                    marginBottom: number;
                    '& .SCBaseItem-secondary': {
                        overflow: string;
                    };
                };
                '& .SCBaseItem-image': {
                    marginTop: any;
                    '& .MuiBadge-badge': {
                        top: any;
                    };
                    '& .SCCommentObjectReply-avatar': {
                        width: any;
                        height: any;
                    };
                };
            };
            '& .SCCommentObjectReply-comment': {
                overflow: string;
                borderRadius: number;
            };
            '& .SCCommentObjectReply-actions': {
                marginLeft: any;
                paddingBottom: any;
            };
        };
    };
};
export default Component;
