import { ApiKeyScope, OrganizationUserDto } from '../../index.js'; export declare class OrganizationTokenDto { id: string; name: string; created: Date; organizationId: string; scope: ApiKeyScope; key?: string; expiresAt?: Date; creator?: OrganizationUserDto; lastUsed?: Date; constructor({ id, name, created, organizationId, scope, key, expiresAt, creator, lastUsed }: { id: string; name: string; created: Date; organizationId: string; scope: ApiKeyScope; key?: string; expiresAt?: Date; creator?: OrganizationUserDto; lastUsed?: Date; }); } //# sourceMappingURL=token.d.ts.map