export type CreateTokenDto = { /** * The role of the token */ role: CreateTokenDto.role; /** * The name of the token */ name: string; /** * The domains that can access this token */ domains?: string; /** * The ids of the agent this token will have access to. This can not be changed later. */ agentIds?: Array; }; export declare namespace CreateTokenDto { /** * The role of the token */ enum role { USER = "USER", ADMIN = "ADMIN" } }