import { CoreAction } from "./interfaces"; export declare class Redirect extends CoreAction { private _callbackUrl; name: string; private _callbackMethod; private _callbackHeaders; private _callbackContentType; constructor(_callbackUrl?: string, name?: string); readonly id: string; readonly url: string; method: string; headers: any; contentType: string; toCCML(): string; }