import { Routes } from '@angular/router'; export interface CrudRoutesConfig { baseRoute: string; list: { tab?: string; component: any; }; creation?: { tab?: string; component?: any; }; update: { tab?: string; component: any; }; } export declare function crudRoutes(config: CrudRoutesConfig): Routes;