import { SortingState } from "@trackunit/iris-app-runtime-core-api"; import { AssetSortInput } from "./generated/graphql-api/graphql"; /** * This hook is used to convert the sorting state from the AssetSortingContext to the AssetSortInput used by the GraphQL API */ export declare const useAssetSortInput: () => AssetSortInput; /** * Convert the sorting state from the AssetSortingContext to the AssetSortInput used by the GraphQL API */ export declare const convertToAssetSortInput: ({ sortBy, order, customFieldDefinitionId, aggregationPeriod, }: SortingState) => AssetSortInput;