import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        escapeHTML?: boolean | undefined;
        transformItems?: import("instantsearch.js").TransformItems<import("instantsearch.js").Hit<import("instantsearch.js").BaseHit>> | undefined;
        classes?: Partial<{
            /**
             * Class names to apply to the root element
             */
            root: string;
            /**
             * Class names to apply to the root element without results
             */
            emptyRoot: string;
            /**
             * Class names to apply to the list element
             */
            list: string;
            /**
             * Class names to apply to each item element
             */
            item: string;
        }> | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            hit: {
                __position: number;
                __queryID?: string | undefined;
            } & {
                objectID: string;
                _highlightResult?: import("instantsearch.js").HitHighlightResult | undefined;
                _snippetResult?: import("instantsearch.js").HitSnippetResult | undefined;
                _rankingInfo?: {
                    promoted: boolean;
                    nbTypos: number;
                    firstMatchedWord: number;
                    proximityDistance?: number | undefined;
                    geoDistance: number;
                    geoPrecision?: number | undefined;
                    nbExactWords: number;
                    words: number;
                    filters: number;
                    userScore: number;
                    matchedGeoLocation?: {
                        lat: number;
                        lng: number;
                        distance: number;
                    } | undefined;
                } | undefined;
                _distinctSeqID?: number | undefined;
                _geoloc?: import("instantsearch.js").GeoLoc | undefined;
            } & import("instantsearch.js").BaseHit & Record<string, any>;
            sendEvent: import("instantsearch.js/es/lib/utils").SendEventForHits;
        };
    };
};
export type HitsProps = typeof __propDef.props;
export type HitsEvents = typeof __propDef.events;
export type HitsSlots = typeof __propDef.slots;
export default class Hits extends SvelteComponentTyped<HitsProps, HitsEvents, HitsSlots> {
}
export {};
