import type { DestinationTree } from '../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetTreeInput = { include?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; declare const getTree: (http: HttpClient) => { query: (input: GetTreeInput) => Promise>; }; export default getTree;