export declare type Account = string | string[] | undefined; /** * The Manifest object for a given asset. * This object holds the contents of the asset's JSON file. * Represented here in its minimal form. */ export declare type Manifest = { image: string; animation_url: string; name: string; symbol: string; seller_fee_basis_points: number; properties: { files: Array<{ type: string; uri: string; }>; creators: Array<{ address: string; share: number; }>; }; }; export declare type UnwrapPromise = T extends Promise ? Return : T; export declare type NumberToString = T extends infer T ? (T extends number ? string : T) : never;