import type { HTMLInputAttributes } from "svelte/elements"; type SearchProps = Omit & { label?: string; helperText?: string; errorText?: string; invalid?: boolean; size?: "sm" | "md" | "lg"; value?: string; placeholder?: string; clearLabel?: string; /** Lift the field max-width cap so it fills a narrow drawer/rail (width 100%). */ fluid?: boolean; class?: string; }; declare const Search: import("svelte").Component; type Search = ReturnType; export default Search; //# sourceMappingURL=Search.svelte.d.ts.map