declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            [x: number]: {
                borderRadius: any;
            };
            borderRadius: number;
            paddingBottom: number;
            overflow: string;
            '& .MuiChip-root': {
                height: string;
            };
            '& .SCUser-avatar': {
                width: any;
                height: any;
                '& img': {
                    borderRadius: number;
                };
            };
            '& .SCUser-staff-badge-label': {
                marginLeft: any;
                borderRadius: number;
                fontSize: string;
            };
            '& .SCUser-group-admin-badge-label': {
                marginLeft: any;
                fontSize: string;
                color: any;
            };
            '& .SCBaseItemButton-primary': {
                fontWeight: any;
            };
            '& .SCBaseItemButton-secondary': {
                fontSize: string;
            };
        };
        skeletonRoot: ({ theme }: any) => {};
    };
};
export default Component;
