export declare class Action {
    /**
    * The code identifying the action that needs to be completed.
    */
    "actionCode": string;
    /**
    * Indicates whether this action has been successfully completed.
    */
    "resolved": boolean;
    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();
}
