UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

9 lines (8 loc) 521 B
import type { Merge, SetOptional } from 'type-fest'; import type { HtmlIngredientProps } from '../types.js'; import type { CreatePinInputProps, CreatePinInputReturn } from './createPinInput.svelte.js'; export interface PinInputProps extends Merge<HtmlIngredientProps<'div', HTMLDivElement, CreatePinInputReturn>, SetOptional<CreatePinInputProps, 'id'>> { } declare const PinInputRoot: import("svelte").Component<PinInputProps, {}, "ref">; type PinInputRoot = ReturnType<typeof PinInputRoot>; export default PinInputRoot;