import { InjectionToken, Type } from '@angular/core';
import { GuardClass, GuardFn } from '../models/guard-can.model';
export interface GuardInfo {
rootGuard: Type<GuardClass> | GuardFn;
isRootCtor: boolean;
}
export declare const GUARD_INFO: InjectionToken<GuardInfo>;