import { GraphQLObjectType, GraphQLInputObjectType } from 'graphql';
import { Context } from '../context';
export declare const GraphQLTokenInput: GraphQLInputObjectType;
export declare const GraphQLToken: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{
    id: string;
    createdAt: Date;
    modifiedAt: Date;
    name: string;
    token: string;
    roleIDs: string[];
}, unknown> & {}, Context>;
export declare const GraphQLCreatedToken: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{
    id: string;
    createdAt: Date;
    modifiedAt: Date;
    name: string;
    token: string;
    roleIDs: string[];
}, unknown> & {}, Context>;
