import type { IRouteMeta } from './types';
/**
 * hook for get matched route
 * @internal internal use. Do not use in your production code.
 */
export declare const useMatchedRoute: () => {
    [key: string]: any;
    path?: string | undefined;
    parentId?: string | undefined;
    meta?: IRouteMeta | undefined;
    id: string;
    redirect?: string | undefined;
};
/**
 * hook for get matched route meta
 */
export declare const useRouteMeta: () => IRouteMeta;
