import { FC } from 'react'; export type RoutesItemType = { component?: () => Promise<{ default: FC; }>; children?: RoutesItemType[]; path: string; redirect?: string; name?: string; custom?: any; }; export declare const getChildrenRouteList: (childrenRoutes: RoutesItemType[], ancPathKey: string) => any;