export declare const tokenCreateBodySchema: { $id: string; type: string; nullable: boolean; properties: { name: { type: string; }; description: { type: string; }; expiresIn: { type: string; default: undefined; }; requiredRoles: { type: string; items: { type: string; }; }; }; }; export declare const tokenUpdateBodySchema: { $id: string; type: string; nullable: boolean; properties: { name: { type: string; }; description: { type: string; }; }; }; export declare const tokenSchema: { $id: string; type: string; nullable: boolean; properties: { id: { type: string; }; _id: { type: string; }; externalId: { type: string; }; name: { type: string; }; description: { type: string; }; token: { type: string; }; roles: { type: string; items: { type: string; }; }; }; }; //# sourceMappingURL=token.d.ts.map