import type { WithGname } from '../internal/types';
import type { UIComponents } from '../types/components';
import type { ComponentAttributes } from '../types/google';
type $$ComponentProps = {
    attributes: ComponentAttributes & WithGname;
    components?: UIComponents;
};
declare const Search: import("svelte").Component<$$ComponentProps, {}, "">;
type Search = ReturnType<typeof Search>;
export default Search;
