interface Props { /** The placeholder text that appears in the search box.*/ searchPlaceholder?: string; /** Optional function that runs when the input value changes. */ onsearch?: (newValue: string) => void; } /** * A search text box with a magnifying-glass icon and clear button, firing an `onsearch` callback as the query changes. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-controls-searchinput--docs) */ declare const SearchInput: import("svelte").Component; type SearchInput = ReturnType; export default SearchInput;