import { JSXOutput, PropsOf, QRL } from '@builder.io/qwik'; import type { InputSize, ValidationStatus } from './input-types'; type InputProps = Omit, 'size'> & { label?: string; size?: InputSize; validationStatus?: ValidationStatus; suffix?: JSXOutput; prefix?: JSXOutput; onClickPrefix$?: QRL<() => void>; onClickSuffix$?: QRL<() => void>; validationMessage?: JSXOutput; helper?: JSXOutput; value?: string | ReadonlyArray | number | undefined | null | FormDataEntryValue; }; export declare const Input: import("@builder.io/qwik").Component; export {};