import type { ContextBoundary, ContextProjectRef, ContextRange } from './types.js'; import type { MemoryScopeRef } from '../memory/types.js'; export type ContextBoundaryReadableInput = { scopes?: MemoryScopeRef[]; connectors?: string[]; project_refs?: ContextProjectRef[]; tenant_id?: string | null; range?: ContextRange; as_of?: string | number | null; }; export declare function applyContextBoundaryReadDefaults(input: T, boundary: ContextBoundary | undefined): T; //# sourceMappingURL=boundary-defaults.d.ts.map