import type { HTMLLabelAttributes } from 'svelte/elements';
interface Props extends HTMLLabelAttributes {
    query?: string;
}
declare const SearchBar: import("svelte").Component<Props, {}, "query">;
type SearchBar = ReturnType<typeof SearchBar>;
export default SearchBar;
