export type ApiKey = typeof ApiKey; export declare const ApiKey: { owner?: import("@semantic-api/api").Reference; } & import("@semantic-api/api").MongoDocument & {} & { name: string; content: string; allowed_functions: string[]; active: boolean; created_at: Date; } & {}, description: Omit, "$id" | "properties" | "required" | "owned" | "indexes"> & { indexes: readonly string[] | undefined; $id: "apiKey"; required: readonly (string | number | symbol)[] | undefined; owned: true; } & { properties: { readonly name: { readonly type: "string"; }; readonly content: { readonly type: "string"; }; readonly allowed_functions: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; readonly active: { readonly type: "boolean"; }; readonly created_at: { readonly type: "string"; readonly format: "date-time"; readonly s$meta: true; }; }; };