import { HiddenInputProps } from '@zag-js/signature-pad';
import { InputHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface SignaturePadHiddenInputBaseProps extends HiddenInputProps, PolymorphicProps {
}
export interface SignaturePadHiddenInputProps extends SignaturePadHiddenInputBaseProps, 
/**
 * @vue-ignore
 */
Omit<InputHTMLAttributes, 'value'> {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<SignaturePadHiddenInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SignaturePadHiddenInputProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
