import type { SearchEngine } from '../../app/search-engine/search-engine.js'; import { type ResultsPerPage, type ResultsPerPageInitialState, type ResultsPerPageProps, type ResultsPerPageState } from '../core/results-per-page/headless-core-results-per-page.js'; export type { ResultsPerPage, ResultsPerPageInitialState, ResultsPerPageProps, ResultsPerPageState }; /** * Creates a `ResultsPerPage` controller instance. * * @param engine - The headless engine. * @param props - The configurable `ResultsPerPage` properties. * @returns A `ResultsPerPage` controller instance. * * @group Controllers * @category ResultsPerPage */ export declare function buildResultsPerPage(engine: SearchEngine, props?: ResultsPerPageProps): ResultsPerPage;