import { SvelteComponent } from "svelte"; import type { Color } from "../types.js"; import type { HTMLInputAttributes } from "svelte/elements"; declare const __propDef: { props: { [x: string]: any; id?: string | undefined; label?: string | undefined; labelPlacement?: ("start" | "end") | undefined; value?: HTMLInputAttributes["value"]; type?: HTMLInputAttributes["type"]; debounce?: number | undefined; disabled?: boolean | undefined; readonly?: boolean | undefined; clearable?: boolean | undefined; placeholder?: string | undefined; width?: string | undefined; size?: ("base" | "sm" | "lg" | "xl") | undefined; color?: Color | undefined; noBorder?: boolean | undefined; required?: boolean | undefined; requiredSymbol?: string | undefined; focus?: (() => void) | undefined; }; events: { change: CustomEvent; input: CustomEvent; debounce: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; icon: {}; iconEnd: {}; }; }; export type InputProps = typeof __propDef.props; export type InputEvents = typeof __propDef.events; export type InputSlots = typeof __propDef.slots; /** * Captures user input. * * [See Docs](https://geist-ui-svelte.dev/components/input) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class Input extends SvelteComponent { get focus(): () => void; } export {};