import React from 'react'; declare type Input = string | number | { label: string; value: string | number; } | Input[]; export declare const Suggestion: React.FC<{ placeholder?: string; style?: React.CSSProperties; labelInValue?: boolean; params?: object; multiple?: boolean; value?: Input; onChange?: (neo: Input) => void; disabled?: boolean; suggest?: (parmas: object & { kw: string; }) => Promise<{ label: string; value: string | number; }[]>; }>; export {};