import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { items: import("instantsearch.js/es/connectors/hits-per-page/connectHitsPerPage").HitsPerPageConnectorParamsItem[]; transformItems?: import("instantsearch.js").TransformItems | undefined; classes?: Partial<{ /** * Class names to apply to the root element */ root: string; /** * Class names to apply to the select element */ select: string; /** * Class names to apply to the option element */ option: string; }> | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type HitsPerPageProps = typeof __propDef.props; export type HitsPerPageEvents = typeof __propDef.events; export type HitsPerPageSlots = typeof __propDef.slots; export default class HitsPerPage extends SvelteComponentTyped { } export {};