import { InputHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface FieldInputBaseProps extends PolymorphicProps {
}
export interface FieldInputProps extends FieldInputBaseProps, 
/**
 * @vue-ignore
 */
Omit<InputHTMLAttributes, 'value'> {
    modelValue?: InputHTMLAttributes['value'];
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<FieldInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
    "update:modelValue": (...args: any[]) => void;
}, string, PublicProps, Readonly<FieldInputProps> & Readonly<{
    "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
