declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCUserInfo-field': {
                marginBottom: any;
                '& h6': {
                    fontSize: string;
                    fontWeight: any;
                    marginBottom: any;
                };
                '&:last-of-type': {
                    marginBottom: number;
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {};
        dialogRoot: ({ theme }: any) => {
            '& .SCUserInfo-caption': {
                marginTop: any;
                textAlign: string;
                '& .SCUserInfo-avatar': {
                    margin: any;
                    width: any;
                    height: any;
                };
                '& .SCUserInfo-username': {
                    fontWeight: any;
                    fontSize: string;
                    marginBottom: any;
                };
            };
        };
    };
};
export default Component;
