import * as Messages from '../messages/index.js'; import * as SpaceEvents from '../space-events/index.js'; import type * as Inboxes from './types.js'; type CreateAccountInboxParams = { accountAddress: string; isPublic: boolean; authPolicy: Inboxes.InboxSenderAuthPolicy; encryptionPublicKey: string; signaturePrivateKey: string; }; type CreateSpaceInboxParams = { author: SpaceEvents.Author; spaceId: string; isPublic: boolean; authPolicy: Inboxes.InboxSenderAuthPolicy; spaceSecretKey: string; previousEventHash: string; }; export declare function createAccountInboxCreationMessage({ accountAddress, isPublic, authPolicy, encryptionPublicKey, signaturePrivateKey, }: CreateAccountInboxParams): Messages.RequestCreateAccountInbox; export declare function createSpaceInboxCreationMessage({ author, spaceId, isPublic, authPolicy, spaceSecretKey, previousEventHash, }: CreateSpaceInboxParams): Promise; export {}; //# sourceMappingURL=create-inbox.d.ts.map