import { Data, WithVariantProps } from '@variantjs/core';
import { InputHTMLAttributes } from 'vue';
export declare type TInputValue = string | number | string[] | undefined;
export declare type TInputOptions = WithVariantProps<{
    modelValue?: TInputValue;
} & InputHTMLAttributes & Data>;
