import { DivProps } from '@lobehub/ui'; import { FC } from 'react'; import type { IconType } from "../types"; import type { IconAvatarProps } from './IconAvatar'; import type { IconCombineProps } from './IconCombine'; type ProviderIconType = FC & { Avatar: FC & any>; Brand?: FC; BrandColor?: FC; Color?: FC; Combine?: FC & any>; Text?: FC; }; export interface ProviderMapping { Combine?: FC; Icon: ProviderIconType; combineMultiple?: number; keywords: string[]; props?: any; } export declare const providerMappings: ProviderMapping[]; export {};