import * as types from '@babel/types'; import { UIDLExpressionValue, UIDLStaticValue } from '@teleporthq/teleport-types'; export interface DynamicSortAST { field: types.Expression; order: types.Expression; depStateIds: string[]; } export declare const extractDynamicSort: (sort: UIDLStaticValue | UIDLExpressionValue | undefined, sortDirection: UIDLStaticValue | UIDLExpressionValue | undefined) => DynamicSortAST | undefined; export declare const appendSortsParam: (paramsProps: types.ObjectProperty[], legacySorts: any[] | undefined, dynamicSort: DynamicSortAST | undefined) => void; //# sourceMappingURL=sort-utils.d.ts.map