import { FCC } from "../types";
export interface Props {
size?: "short" | "medium" | "large" | "auto";
className?: string;
value?: string;
onChange: (v: string) => void;
onBlur?: VoidFunction;
placeholder?: string;
}
export declare const LegacyInput: FCC<Props>;