import type { TemplateResult } from '../../../../Dom/Html'; /** * Represents the render function for suggestion items. * * @typeParam T - The type of the suggestion item. * @public */ export type AutoCompleteBoxItemRenderer = (item: T, index: number) => TemplateResult | string; //# sourceMappingURL=AutoCompleteBoxItemRenderer.d.ts.map