export declare const engramIdlFactory: ({ IDL }: { IDL: any; }) => any; /** The default connect-an-agent grant: read + append (the standard append-only operator), no wallet. */ export interface OperatorPermissions { canReadMemory: boolean; scopes: [] | [string[]]; canReadBackup: [] | [boolean]; callsPerMinute: bigint; canAppendMemory: boolean; canReadWallet: boolean; } export declare const DEFAULT_OPERATOR_PERMISSIONS: OperatorPermissions;