import type { Snippet } from 'svelte'; import type { SettingsCatalogItem, SettingsCatalogPage } from './types.js'; interface Props { /** Paginated catalog data with items, current page, and totals. */ page: SettingsCatalogPage; /** Base URL for navigation and search links. */ baseUrl: string; /** Render snippet for the detail pane, receives the selected item. */ detail: Snippet<[{ item: D; }]>; /** Placeholder text for the search input field. */ searchPlaceholder?: string; /** Label for the search input field. */ searchLabel?: string; /** Label for the results list navigation. */ resultsLabel?: string; /** Text shown when there are no search results. */ emptyLabel?: string; /** Text shown when no item is selected. */ selectionLabel?: string; /** URL search parameters to preserve across pagination. */ preservedParams?: Record; } declare function $$render(): { props: Props; exports: {}; bindings: ""; slots: {}; events: {}; }; declare class __sveltets_Render { props(): ReturnType>['props']; events(): ReturnType>['events']; slots(): ReturnType>['slots']; bindings(): ""; exports(): {}; } interface $$IsomorphicComponent { new (options: import('svelte').ComponentConstructorOptions['props']>>): import('svelte').SvelteComponent['props']>, ReturnType<__sveltets_Render['events']>, ReturnType<__sveltets_Render['slots']>> & { $$bindings?: ReturnType<__sveltets_Render['bindings']>; } & ReturnType<__sveltets_Render['exports']>; (internal: unknown, props: ReturnType<__sveltets_Render['props']> & {}): ReturnType<__sveltets_Render['exports']>; z_$$bindings?: ReturnType<__sveltets_Render['bindings']>; } declare const SettingsCatalog: $$IsomorphicComponent; type SettingsCatalog = InstanceType>; export default SettingsCatalog; //# sourceMappingURL=SettingsCatalog.svelte.d.ts.map