import { GraphQLResolveInfo } from "graphql";
export declare type ParsedResult = {
    select: {
        [key: string]: true | ParsedResult;
    };
    where?: any;
    take?: number;
    skip?: number;
};
declare type ParseQueryOptions = {
    notAllowed?: string[];
};
export declare function toPrismaSelect(info: GraphQLResolveInfo, options?: ParseQueryOptions): Promise<{}>;
export {};
