import { RestCommand } from "../../types.js"; //#region src/rest/commands/schema/snapshot.d.ts type SchemaSnapshotOutput = { version: number; directus: string; vendor: string; collections: Record[]; fields: Record[]; relations: Record[]; }; /** * Retrieve the current schema. This endpoint is only available to admin users. * @returns Returns the JSON object containing schema details. */ declare const schemaSnapshot: () => RestCommand; //#endregion export { SchemaSnapshotOutput, schemaSnapshot }; //# sourceMappingURL=snapshot.d.ts.map