import type * as ElevenLabs from "../index";
export interface WorkspaceApiKeyResponseModel {
    name: string;
    hint: string;
    keyId: string;
    serviceAccountUserId: string;
    createdAtUnix?: number;
    isDisabled?: boolean;
    permissions?: ElevenLabs.PermissionType[];
    characterLimit?: number;
    characterCount?: number;
    hashedXiApiKey: string;
}
