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