export type InputFieldProps = { flag: string; prompt: string; value: string; isEditing: boolean; onChange: (value: string) => void; onSubmit: () => void; }; export declare function InputField({ flag, prompt, value, isEditing, onChange, onSubmit, }: InputFieldProps): import("react/jsx-runtime").JSX.Element; export declare function getInputField(props: InputFieldProps): React.ReactNode;