import type { InsightEngine } from '../../../app/insight-engine/insight-engine.js'; import { type ResultList, type ResultListOptions, type ResultListProps, type ResultListState } from '../../core/result-list/headless-core-result-list.js'; export type { ResultList, ResultListOptions, ResultListProps, ResultListState }; /** * Creates an insight `ResultList` controller instance. * @param engine - The insight engine. * @param props - The `ResultList` controller properties. * @returns A `ResultList` controller instance. * * @group Controllers * @category ResultList */ export declare function buildResultList(engine: InsightEngine, props?: ResultListProps): ResultList;