declare class PaymentProcessor {
    /**
    * The name of the company to which the processor belongs.
    */
    'companyName'?: {
        [key: string]: string;
    };
    /**
    * The localized description of the object.
    */
    'description'?: {
        [key: string]: string;
    };
    /**
    * Where the processor's headquarters are located.
    */
    'headquartersLocation'?: {
        [key: string]: string;
    };
    /**
    * A unique identifier for the object.
    */
    'id'?: number;
    /**
    * The path to the logo image of the processor.
    */
    'logoPath'?: string;
    /**
    * The localized name of the object.
    */
    'name'?: {
        [key: string]: string;
    };
    /**
    * The name of the processor's product.
    */
    'productName'?: {
        [key: string]: string;
    };
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { PaymentProcessor };
