import { CustomScalar } from "@nestjs/graphql"; import { FileUpload } from "../helpers"; export declare type ImageProps = Promise; export declare class Upload implements CustomScalar { description: string; supportedFormats: string[]; parseValue(value: ImageProps): ImageProps; serialize(value: ImageProps): ImageProps; parseLiteral(file: any): any; }