ui-ingredients
Version:
Headless component library for Svelte powered by zag
9 lines (8 loc) • 480 B
TypeScript
import type { ActionTriggerProps } from '@zag-js/timer';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface TimerActionTriggerProps extends Merge<HtmlIngredientProps<'button', HTMLButtonElement>, ActionTriggerProps> {
}
declare const TimerActionTrigger: import("svelte").Component<TimerActionTriggerProps, {}, "ref">;
type TimerActionTrigger = ReturnType<typeof TimerActionTrigger>;
export default TimerActionTrigger;