export declare const migrateToPathWithId: (redirectionLink: string, idField?: string) => { redirectionPathWithId: string; idField: string; }; export declare const migrateRoutesToUseParams: (routes: Record) => Record; export declare const createParameterizedNavigationHandler: (navigate: (path: string) => void, basePath: string, idExtractor?: (row: any) => string | number) => (row: any) => void; export declare const updateTableConfigForParameterizedNavigation: (tableConfig: any, pathWithIdField: string, idField?: string) => any;