declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            [x: number]: {
                height: string;
            };
            display: string;
            flexDirection: string;
            height: string;
            overflowY: string;
            padding: any;
            justifyContent: string;
            '& .SCCommentObjectReply-root': {
                backgroundColor: string;
                '& .SCEditor-root': {
                    paddingTop: any;
                };
                '& .SCEditor-content': {
                    minHeight: string;
                };
                '& .SCEditor-actions': {
                    left: any;
                    '& .SCCommentObjectReply-icon-reply': {
                        marginLeft: string;
                    };
                };
                marginTop: string;
                marginBottom: number;
            };
            '& .infinite-scroll-component__outerdiv': {
                overflowY: string;
                marginBottom: any;
                '& .infinite-scroll-component': {
                    '& .MuiList-root ': {
                        padding: number;
                        '& .MuiListItem-root': {
                            padding: number;
                        };
                    };
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {
            width: string;
            backgroundColor: string;
            padding: any;
        };
    };
};
export default Component;
