declare const Component: {
    styleOverrides: {
        root: ({ theme, subscribers }: any) => {
            padding: any;
            '& .MuiAvatarGroup-root': {
                '&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root': {
                    '&.MuiAvatar-colorDefault': {
                        marginLeft: number;
                        backgroundColor: string;
                        color: any;
                        border: string;
                        borderRadius: number;
                        padding: number;
                    };
                };
                '& .MuiAvatar-root': {
                    height: any;
                    border: string;
                    fontSize: string;
                    '&:first-of-type': {
                        width: any;
                    };
                    '&:not(:first-of-type)': {
                        width: any;
                    };
                };
            };
        };
        dialogRoot: () => {};
    };
};
export default Component;
