import { Routes } from '@angular/router'; import { PreferencesViewConfig } from './types'; /** * Helper para montar la vista de preferencias (`val-preferences-view`) como * ruta en una app del factory. El `config` se pasa por route `data` * (`preferencesConfig`) y el componente lo lee como fallback de su * `@Input() config`. * * @example * ```ts * // settings.routes.ts * export const settingsRoutes: Routes = [ * ...provideValtechPreferencesRoutes(), * { path: 'profile', loadComponent: () => ... }, * ]; * * // con config acotada: * ...provideValtechPreferencesRoutes({ config: { showLanguage: false } }), * ``` */ export declare function provideValtechPreferencesRoutes(opts?: { path?: string; config?: PreferencesViewConfig; }): Routes;