import type { ReactNode } from 'react'; import { appSet } from './appSet'; export interface IconProps { /** @private for Typography.Icon only. */ className?: string; name: keyof typeof appSet | 'loading'; inlineAlign?: 'sub' | 'baseline'; /** @deprecated use Typography.Icon instead */ color?: string; fill?: boolean; } /** @deprecated use Icon from kitt-universal instead */ export declare function Icon({ className, name, inlineAlign, color, fill }: IconProps): ReactNode; //# sourceMappingURL=index.d.ts.map