export declare class ShopperStatement {
    /**
    * The name you want to be shown on the shopper\'s bank or credit card statement. Can\'t be all numbers. If a shopper statement is present, this field is required.
    */
    'doingBusinessAsName'?: string;
    /**
    * The type of shopperstatement you want to use: fixed, append or dynamic
    */
    'type'?: ShopperStatement.TypeEnum;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace ShopperStatement {
    enum TypeEnum {
        Append = "append",
        Dynamic = "dynamic",
        Fixed = "fixed"
    }
}
