UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 362 B
import type { HtmlIngredientProps } from '../types.js'; export interface PasswordInputControlProps extends HtmlIngredientProps<'div', HTMLDivElement> { } declare const PasswordInputControl: import("svelte").Component<PasswordInputControlProps, {}, "ref">; type PasswordInputControl = ReturnType<typeof PasswordInputControl>; export default PasswordInputControl;