import { Effect } from 'effect'; import type { InboxSenderAuthPolicy } from '../inboxes/types.js'; import type { Author, CreateSpaceInboxEvent } from './types.js'; export declare const createInbox: ({ author, spaceId, inboxId, encryptionPublicKey, secretKey, isPublic, authPolicy, previousEventHash, }: { author: Author; spaceId: string; inboxId: string; encryptionPublicKey: string; previousEventHash: string; secretKey: string; isPublic: boolean; authPolicy: InboxSenderAuthPolicy; }) => Effect.Effect; //# sourceMappingURL=create-inbox.d.ts.map