/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface SearchTriggerProps extends Omit, "label"> { /** `field` fixed width, `full` spans, `icon` a square at the touch floor; choose per breakpoint with the hide utilities. */ variant?: "field" | "full" | "icon"; /** Visible standing text, and the accessible name (WCAG 2.5.3). */ label?: string; /** Whether the overlay it opens is showing. */ expanded?: boolean; /** `id` of that overlay. */ controls?: string; className?: string; } /** * Looks like a search field, behaves like a button: opens a search overlay (`aria-haspopup="dialog"`). * * @example * setOpen(true)} /> */ export declare const SearchTrigger: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=SearchTrigger.d.ts.map