import { AutocompleteSource as AutocompleteCoreSource, InternalAutocompleteSource as InternalAutocompleteCoreSource, BaseItem } from '@algolia/autocomplete-core';
import { AutocompleteComponents } from './AutocompleteComponents';
import { AutocompleteRenderer, VNode } from './AutocompleteRenderer';
import { AutocompleteState } from './AutocompleteState';
declare type Template<TParams> = (params: TParams & AutocompleteRenderer & {
    components: AutocompleteComponents;
}) => VNode | string;
/**
 * Templates to display in the autocomplete panel.
 *
 * A template can either return a string, or perform DOM mutations (manipulating DOM elements with JavaScript and attaching events) without returning a string.
 */
export declare type SourceTemplates<TItem extends BaseItem> = {
    /**
     * A function that returns the template for each item of the source.
     *
     * @link https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/templates/#param-item
     */
    item: Template<{
        item: TItem;
        state: AutocompleteState<TItem>;
    }>;
    /**
     * A function that returns the template for the header (before the list of items).
     *
     * @link https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/templates/#param-header
     */
    header?: Template<{
        state: AutocompleteState<TItem>;
        source: AutocompleteSource<TItem>;
        items: TItem[];
    }>;
    /**
     * A function that returns the template for the footer (after the list of items).
     *
     * @link https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/templates/#param-footer
     */
    footer?: Template<{
        state: AutocompleteState<TItem>;
        source: AutocompleteSource<TItem>;
        items: TItem[];
    }>;
    /**
     * A function that returns the template for when there are no items.
     *
     * @link https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/templates/#param-noresults
     */
    noResults?: Template<{
        state: AutocompleteState<TItem>;
        source: AutocompleteSource<TItem>;
    }>;
};
declare type WithTemplates<TType, TItem extends BaseItem> = TType & {
    /**
     * A set of templates to customize how sections and their items are displayed.
     *
     * See [**Displaying items with Templates**](templates) for more information.
     *
     * @link https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/sources/#param-templates
     */
    templates: SourceTemplates<TItem>;
};
export interface AutocompleteCoreSourceWithDocs<TItem extends BaseItem> extends AutocompleteCoreSource<TItem> {
    /**
     * Unique identifier for the source.
     *
     * It is used as value for the `data-autocomplete-source-id` attribute of the source `section` container.
     */
    sourceId: string;
}
export declare type AutocompleteSource<TItem extends BaseItem> = WithTemplates<AutocompleteCoreSourceWithDocs<TItem>, TItem>;
export declare type InternalAutocompleteSource<TItem extends BaseItem> = WithTemplates<InternalAutocompleteCoreSource<TItem>, TItem>;
export {};
