import type { Renderer } from '../../types'; type IconProps = Pick & { className?: string | string[]; }; type LoadingIconProps = IconProps & { isSearchStalled: boolean; }; export declare function SubmitIcon({ createElement, className }: IconProps): JSX.Element; export declare function LoadingIcon({ createElement, isSearchStalled, className, }: LoadingIconProps): JSX.Element; export declare function ClearIcon({ createElement, className }: IconProps): JSX.Element; export declare function ClockIcon({ createElement, className }: IconProps): JSX.Element; export declare function TrashIcon({ createElement, className }: IconProps): JSX.Element; export declare function ApplyIcon({ createElement, className }: IconProps): JSX.Element; export declare function AiModeIcon({ createElement, className }: IconProps): JSX.Element; export declare function SearchIcon({ createElement, className }: IconProps): JSX.Element; export declare function BackIcon({ createElement, className }: IconProps): JSX.Element; export {};