import type { HtmlIngredientProps } from '../types.js';
export interface FieldInputProps extends HtmlIngredientProps<'input', HTMLInputElement> {
}
declare const FieldInput: import("svelte").Component<FieldInputProps, {}, "ref">;
type FieldInput = ReturnType<typeof FieldInput>;
export default FieldInput;
