import { ClassType } from "type-graphql"; import { ReturnTypeFunc } from "@nestjs/graphql"; export declare function Filterable(returnTypeFunc?: ReturnTypeFunc, option?: FilterableOption): Function; interface FilterableOption { type: ClassType | any; isEnum: boolean; } export {};