import type { SortBy } from '../filter-sort-helper/sort.js'; import type { FilterHelpers } from '../filter-sort-helper/filter.js'; import type { SchemaDeclaration } from '../../schema.js'; export type Options = { fields?: string[]; expand?: Expand[]; filter?: string | ((arg: FilterHelpers) => string); sort?: string | ((arg: { $: FilterHelpers['$']; sortBy: SortBy; }) => string); }; interface Expand extends Pick { key: string; } export declare function checkHasFieldsSpecified(options: any): boolean; export {};