import { DerivationMode } from "@ledgerhq/types-live";
export type AccountType = "big" | "average" | "pristine";
export interface AccountInfo {
    address: string;
    xpub?: string;
    derivationMode?: DerivationMode;
}
declare const info: Record<string, {
    accounts: Partial<Record<AccountType, AccountInfo>>;
    skip?: string;
}>;
export default info;
//# sourceMappingURL=currencies.d.ts.map