import { Props } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = Props; type __VLS_PublicProps = { modelValue?: string; } & __VLS_Props; declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string) => any; } & { click: () => any; input: (e: Event) => any; search: () => any; blur: (e: FocusEvent) => any; change: (e: Event) => any; focus: (e: FocusEvent) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClick?: (() => any) | undefined; onInput?: ((e: Event) => any) | undefined; onSearch?: (() => any) | undefined; onBlur?: ((e: FocusEvent) => any) | undefined; onChange?: ((e: Event) => any) | undefined; onFocus?: ((e: FocusEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { color: string; disabled: boolean; radius: string; placeholder: string; background: string; btnText: string; align: "left" | "center" | "right" | "justify" | "inherit"; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export default _default;