interface IconAiProps {
    /**
     * The color of the icon
     * @default '#000000'
     */
    color?: string;
    /**
     * The size of the icon
     * @default 20
     */
    size?: number;
}
/**
 * A react component for the an AI icon
 * @returns
 */
export declare const IconAi: (props: IconAiProps) => import("react/jsx-runtime").JSX.Element;
export {};
