declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .MuiButton-startIcon': {
                marginRight: any;
                '& .MuiIcon-root': {
                    fontSize: string;
                };
            };
        };
        dialogRoot: ({ theme }: any) => {
            '& .SCBaseDialog-title-root span ': {
                width: string;
                display: string;
                alignItems: string;
                justifyContent: string;
                '& .SCGroupInviteButton-dialog-title': {
                    fontWeight: any;
                    fontSize: any;
                };
            };
            '& .SCGroupInviteButton-input': {
                backgroundColor: string;
                borderRadius: any;
                height: any;
                padding: any;
                '& .SCGroupInviteButton-icon ': {
                    marginLeft: any;
                };
                '&.Mui-focused .MuiOutlinedInput-notchedOutline': {
                    border: string;
                };
            };
            '& .SCGroupInviteButton-invited-box': {
                marginTop: any;
                marginBottom: any;
                '& .MuiChip-root': {
                    marginBottom: any;
                };
            };
            '& .SCGroupInviteButton-suggested': {
                '& h4': {
                    marginBottom: any;
                };
                '& .SCUser-root': {
                    '&:hover': {
                        backgroundColor: string;
                    };
                };
            };
        };
    };
};
export default Component;
