import { AllTokenKeysToKeyCommand, TokenKeysToContractCommand, TokenKeysToKeyCommand } from '@scripts'; import { BytesLike } from 'ethers'; export interface KeysStruct { keyType: bigint; publicKey: BytesLike; isEd25519: boolean; } export declare function tokenKeysToContract({ addKyc, addFeeSchedule, addSupply, addWipe, }: TokenKeysToContractCommand): KeysStruct[]; export declare function tokenKeysToKey({ publicKey, isEd25519, addKyc, addFeeSchedule }: TokenKeysToKeyCommand): KeysStruct[]; export declare function allTokenKeysToKey({ publicKey, isEd25519, addKyc, addFeeSchedule, }: AllTokenKeysToKeyCommand): KeysStruct[]; export declare function rolesToAccounts({ allToContract, allRolesToCreator, CreatorAccount, RolesToAccount, }: { allToContract: boolean; allRolesToCreator: boolean; CreatorAccount: string; RolesToAccount: string; }): { role: string; account: string; }[];