import { type DrizzleExecutor } from "../drizzle.js"; /** * Reads the singleton server identity and its default retention policy. * This action is the canonical projection from persisted server settings to the public profile shape. */ export declare function serverProfileGet(executor: DrizzleExecutor): Promise<{ name: string; title?: string; photoFileId?: string; defaultRetentionMode: "forever" | "duration"; defaultRetentionSeconds?: number; updatedAt: string; }>; //# sourceMappingURL=serverProfileGet.d.ts.map