ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 314 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface TimerControlProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const TimerControl: import("svelte").Component<TimerControlProps, {}, "ref">;
type TimerControl = ReturnType<typeof TimerControl>;
export default TimerControl;