interface KeyInputFieldProps {
    value: string;
    onChange: (value: string) => void;
    placeholder?: string;
    isInvalid?: boolean;
    isUnverified?: boolean;
    feedbackMessage?: string;
}
export declare function KeyInputField({ value, onChange, placeholder, isInvalid, isUnverified, feedbackMessage, }: KeyInputFieldProps): import("react/jsx-runtime").JSX.Element;
export {};
