import { SourceFile } from 'ts-morph';
export interface CoerceRouteGuardOptions {
    routeArrayName?: string;
    type?: 'canActivate' | 'canActivateChild';
}
export declare function CoerceRouteGuard(sourceFile: SourceFile, path: string[], guard: string, options?: CoerceRouteGuardOptions): void;
