import { Fragment, Query } from '../types'; interface ListQueryOptions { withoutFilter?: boolean; filterName?: string; queryName?: string; } /** * Generates entity list query * * @param fragment * @param options */ export default function (fragment: Fragment, options?: ListQueryOptions): Query; export {};