import { type SearchProps } from "../..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [SearchProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L852)
 * ## Props
 * @prop children
 * @prop inputClass
 * @prop size
 * @prop placeholder = "Search"
 * @prop value = $bindable()
 * @prop elementRef = $bindable()
 * @prop clearable = false
 * @prop clearableSvgClass
 * @prop clearableColor = "none"
 * @prop clearableClass
 * @prop clearableOnClick
 * @prop ...restProps
 */
declare const Search: import("svelte").Component<SearchProps, {}, "value" | "elementRef">;
type Search = ReturnType<typeof Search>;
export default Search;
