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