import { CryptoCurrencyId } from "@ledgerhq/types-cryptoassets";
export type MigrationAddress = {
    currencyId: CryptoCurrencyId;
    address: string;
    xpub?: never;
} | {
    currencyId: CryptoCurrencyId;
    xpub: string;
    address?: never;
};
export declare const migrationAddresses: MigrationAddress[];
//# sourceMappingURL=addresses.d.ts.map