import { SvelteComponent } from "svelte";
import type { WithGname } from '../internal/types';
import type { UIComponents } from '../types/components';
import type { ComponentAttributes } from '../types/google';
declare const __propDef: {
    props: {
        attributes: ComponentAttributes & WithGname;
        components?: UIComponents | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
    exports?: {} | undefined;
    bindings?: string | undefined;
};
export type SearchProps = typeof __propDef.props;
export type SearchEvents = typeof __propDef.events;
export type SearchSlots = typeof __propDef.slots;
export default class Search extends SvelteComponent<SearchProps, SearchEvents, SearchSlots> {
}
export {};
