import type { Store } from '../types.js'; import type { Component } from 'svelte'; declare function $$render(): { props: { /** * The parent store containing destination state. */ store: Store; /** * The field name in state that contains the destination. * * Must be a discriminated union with `{ type: string; state: any }` structure. */ field: keyof State & string; /** * Map of destination case types to route configurations. * * Keys must match the `type` values in the destination union. */ routes: Record; /** * Additional props to pass to the child component. * * @example * ```typescript * { * componentProps: { * showAdvanced: true, * theme: 'dark' * } * } * ``` */ componentProps?: Record; }>; }; 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 DestinationRouter: $$IsomorphicComponent; type DestinationRouter = InstanceType>; export default DestinationRouter; //# sourceMappingURL=DestinationRouter.svelte.d.ts.map