import type { FormChildProps } from '../../../composables/useFormChild'; export interface FmSearchProps extends FormChildProps { placeholder?: string; minLength?: number; maxLength?: number; /** To display virtual keyboard */ inputmode?: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'; readonly?: boolean; labelMark?: 'required' | 'optional' | 'none'; showSuccess?: boolean; showValidBorder?: boolean; prependText?: string; appendText?: string; labelInfo?: string; showWordCount?: boolean; /** Collapse component into search icon instead when empty */ collapsible?: boolean; maxWidth?: string | number; autofocus?: boolean; } declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { label: string; disabled: undefined; placeholder: string; helperText: string; minLength: number; maxLength: number; inputmode: string; readonly: boolean; labelMark: string; prependIcon: string; appendIcon: string; rules: () => never[]; showSuccess: boolean; showValidBorder: boolean; prependText: string; appendText: string; labelInfo: string; helperState: string; showWordCount: boolean; collapsible: boolean; maxWidth: undefined; autofocus: boolean; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { label: string; disabled: undefined; placeholder: string; helperText: string; minLength: number; maxLength: number; inputmode: string; readonly: boolean; labelMark: string; prependIcon: string; appendIcon: string; rules: () => never[]; showSuccess: boolean; showValidBorder: boolean; prependText: string; appendText: string; labelInfo: string; helperState: string; showWordCount: boolean; collapsible: boolean; maxWidth: undefined; autofocus: boolean; }>>>, { label: string; disabled: boolean; labelMark: "required" | "optional" | "none"; labelInfo: string; rules: import("../../..").ValidationRule[]; helperText: string; helperState: "error" | "none" | "success" | "warning"; placeholder: string; maxWidth: string | number; showValidBorder: boolean; minLength: number; maxLength: number; inputmode: "text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric"; readonly: boolean; showWordCount: boolean; autofocus: boolean; showSuccess: boolean; prependText: string; appendText: string; collapsible: boolean; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};