/**
 * Alpaca Broker API
 * Open brokerage accounts, enable commission-free trading, and manage the ongoing user experience with Alpaca Broker API
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
* Disclosures fields denote if the account owner falls under each category defined by FINRA rule. The client has to ask questions for the end user and the values should reflect their answers.  If one of the answers is true (yes), the account goes into ACTION_REQUIRED status.
*/
export declare class Disclosures {
    'employment_status'?: Disclosures.EmploymentStatusEnum;
    'employer_name'?: string;
    'employer_address'?: string;
    'employment_position'?: string;
    'is_control_person': boolean;
    'is_affiliated_exchange_or_finra': boolean;
    'is_politically_exposed': boolean;
    'immediate_family_exposed': boolean;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace Disclosures {
    enum EmploymentStatusEnum {
        Unemployed,
        Employed,
        Student,
        Retired
    }
}
