import type { JSX } from "preact"; export declare const Input: ({ error, inputRef, ...props }: JSX.HTMLAttributes & { error?: string | undefined; inputRef?: { current: HTMLInputElement | null; } | undefined; hidden?: boolean | undefined; }) => JSX.Element;