declare const Component: {
    styleOverrides: {
        root: ({ theme, followers }: {
            theme: any;
            followers: any;
        }) => {
            gap: any;
            marginTop: string;
            minWidth: string;
            '&:hover': {
                backgroundColor: string;
            };
            '& .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;
                    };
                };
            };
            '& .SCEventParticipantsButton-participants': {
                color: any;
            };
        };
        dialogRoot: ({ theme }: {
            theme: any;
        }) => {
            '& .SCEventParticipantsButton-infinite-scroll': {
                [x: number]: {
                    height: string;
                };
                height: string;
            };
        };
    };
};
export default Component;
