UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 486 B
import type { Assign, HtmlIngredientProps, Optional } from '../types.js'; import type { CreatePinInputProps, CreatePinInputReturn } from './create-pin-input.svelte.js'; export interface PinInputProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement, CreatePinInputReturn>, Optional<CreatePinInputProps, 'id'>> { } declare const PinInputRoot: import("svelte").Component<PinInputProps, {}, "ref">; type PinInputRoot = ReturnType<typeof PinInputRoot>; export default PinInputRoot;