export { default as Input } from './cmp.input.svelte'; export type { InputForwardedProps, InputProps, InputSize, InputType } from './types'; /** Imperative API exposed via `bind:this={instance}` on ``. */ export type InputInstance = { focus: () => void; select: () => void; clear: () => void; };