import { Summary } from "./summary";
export declare class TaxFormSummaryResponse {
    /**
    * A list of tax form summaries, where each summary consists of the legal entity and the tax years in which the legal entity has a tax form.
    */
    "data": Array<Summary>;
    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();
}
