import { CortexResponse } from "../../internal/cortex-response";
export declare class Authorisation extends CortexResponse {
    token: string;
    warning?: string | undefined;
    constructor(token: string, warning?: string | undefined);
}
