/** * This code was AUTOGENERATED using the kinobi library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun kinobi to update it. * * @see https://github.com/metaplex-foundation/kinobi */ import { Account, Context, Pda, PublicKey, RpcAccount, RpcGetAccountOptions, RpcGetAccountsOptions } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; export type AssetSigner = Account; export type AssetSignerAccountData = { data: Uint8Array; }; export type AssetSignerAccountDataArgs = AssetSignerAccountData; export declare function getAssetSignerAccountDataSerializer(): Serializer; export declare function deserializeAssetSigner(rawAccount: RpcAccount): AssetSigner; export declare function fetchAssetSigner(context: Pick, publicKey: PublicKey | Pda, options?: RpcGetAccountOptions): Promise; export declare function safeFetchAssetSigner(context: Pick, publicKey: PublicKey | Pda, options?: RpcGetAccountOptions): Promise; export declare function fetchAllAssetSigner(context: Pick, publicKeys: Array, options?: RpcGetAccountsOptions): Promise; export declare function safeFetchAllAssetSigner(context: Pick, publicKeys: Array, options?: RpcGetAccountsOptions): Promise; export declare function getAssetSignerGpaBuilder(context: Pick): import("@metaplex-foundation/umi").GpaBuilder; export declare function getAssetSignerSize(): number; export declare function findAssetSignerPda(context: Pick, seeds: { /** The address of the asset account */ asset: PublicKey; }): Pda; export declare function fetchAssetSignerFromSeeds(context: Pick, seeds: Parameters[1], options?: RpcGetAccountOptions): Promise; export declare function safeFetchAssetSignerFromSeeds(context: Pick, seeds: Parameters[1], options?: RpcGetAccountOptions): Promise;