/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { Chain } from "./chain";
import { Identity } from "./identity";
/**
 * A source blockchain address.
 * @export
 * @interface TransferSourceBlockchainLocation
 */
export interface TransferSourceBlockchainLocation {
    /**
     *
     * @type {string}
     * @memberof TransferSourceBlockchainLocation
     */
    type: TransferSourceBlockchainLocationTypeEnum;
    /**
     *
     * @type {Chain}
     * @memberof TransferSourceBlockchainLocation
     */
    chain: Chain;
    /**
     *
     * @type {Array<Identity>}
     * @memberof TransferSourceBlockchainLocation
     */
    identities?: Array<Identity>;
}
export declare const TransferSourceBlockchainLocationTypeEnum: {
    readonly Blockchain: "blockchain";
};
export declare type TransferSourceBlockchainLocationTypeEnum = typeof TransferSourceBlockchainLocationTypeEnum[keyof typeof TransferSourceBlockchainLocationTypeEnum];
