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