import type { Commitment, Connection, PublicKey } from "@solana/web3.js"; import { AccountData } from "../../types"; import type { ProjectData } from "./constants"; export declare const getProject: (connection: Connection, projectId: PublicKey, commitment?: Commitment) => Promise<{ parsed: { bump: number; identifier: BN; authorities: PublicKey[]; staticFee: BN; treasury: PublicKey; name: string; public: boolean; sellerFeeBasisPoint: number; authorizedTokenCreators: PublicKey[]; }; pubkey: PublicKey; }>; export declare const getProjects: (connection: Connection, projectIds: PublicKey[], commitment?: Commitment) => Promise<{ parsed: { bump: number; identifier: BN; authorities: PublicKey[]; staticFee: BN; treasury: PublicKey; name: string; public: boolean; sellerFeeBasisPoint: number; authorizedTokenCreators: PublicKey[]; } | null; pubkey: PublicKey; }[]>; export declare const getAllProjects: (connection: Connection, commitment?: Commitment) => Promise[]>; export declare const getIdentifier: (connection: Connection, identifierId: PublicKey, commitment?: Commitment) => Promise<{ parsed: { bump: number; count: BN; defaultStaticFee: BN; defaultTreasury: PublicKey; defaultSellerFeeBasisPoint: number; }; pubkey: PublicKey; }>; //# sourceMappingURL=accounts.d.ts.map