import { PermitRestriction } from "./permitRestriction";
export declare class Permit {
    /**
    * Partner ID (when using the permit-per-partner token sharing model).
    */
    "partnerId"?: string;
    /**
    * The profile to apply to this permit (when using the shared permits model).
    */
    "profileReference"?: string;
    "restriction"?: PermitRestriction | null;
    /**
    * The key to link permit requests to permit results.
    */
    "resultKey"?: string;
    /**
    * The expiry date for this permit.
    */
    "validTillDate"?: Date;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
