export declare type StringPublicKey = string; export interface PromiseFulfilledResult { status: "fulfilled"; value: T; } export interface PromiseRejectedResult { status: "rejected"; reason: any; } export declare type PromiseSettledResult = PromiseFulfilledResult | PromiseRejectedResult; //# sourceMappingURL=types.d.ts.map