import type { AccountData } from "@cardinal/common"; import type { Connection, PublicKey } from "@solana/web3.js"; import type { TokenManagerState } from "."; import type { MintCounterData, MintManagerData, TokenManagerData, TransferReceiptData } from "./constants"; export declare const getTokenManager: (connection: Connection, tokenManagerId: PublicKey) => Promise>; export declare const getTokenManagers: (connection: Connection, tokenManagerIds: PublicKey[]) => Promise[]>; export declare const getAllTokenManagers: (connection: Connection) => Promise; export declare const getTokenManagersByState: (connection: Connection, state: TokenManagerState | null) => Promise[]>; export declare const getMintManager: (connection: Connection, mintManagerId: PublicKey) => Promise>; export declare const getMintCounter: (connection: Connection, mintCounterId: PublicKey) => Promise>; export declare const getTokenManagersForIssuer: (connection: Connection, issuerId: PublicKey) => Promise[]>; export declare const getTransferReceipt: (connection: Connection, transferReceiptId: PublicKey) => Promise>; //# sourceMappingURL=accounts.d.ts.map