declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            [x: number]: {
                borderRadius: any;
            };
            borderRadius: number;
            paddingBottom: number;
            overflow: string;
            '& .SCBaseItemButton-image': {
                marginRight: any;
                '& .MuiAvatar-root': {
                    width: any;
                    height: any;
                    '& img': {
                        borderRadius: number;
                    };
                };
            };
            '& .SCBaseItemButton-primary': {
                display: string;
                alignItems: string;
                fontWeight: any;
                '& .SCGroup-icon': {
                    marginLeft: any;
                };
            };
            '& .SCBaseItemButton-secondary': {
                fontSize: string;
            };
            '& .SCGroup-actions': {
                '& .MuiIcon-root': {
                    fontSize: string;
                    color: any;
                };
                '& .MuiButtonBase-root': {
                    marginLeft: any;
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {};
    };
};
export default Component;
