import { ActionTriggerProps } from '@zag-js/timer';
import { ButtonHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface TimerActionTriggerBaseProps extends ActionTriggerProps, PolymorphicProps {
}
export interface TimerActionTriggerProps extends TimerActionTriggerBaseProps, 
/**
 * @vue-ignore
 */
ButtonHTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<TimerActionTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TimerActionTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
