import { Class } from '@nestjs-query/core'; export interface CreateOneInputType { input: C; } /** * The abstract input type for create one operations. * * @param fieldName - The name of the field to be exposed in the graphql schema * @param InputClass - The InputType to be used. */ export declare function CreateOneInputType(fieldName: string, InputClass: Class): Class>;