import { Order, OrdersQuery } from './types'; export declare function getOrders(query: Partial): Generator<{ type: import("./action-types").TYPES.GET_ORDERS_SUCCESS; orders: import("./types").PartialOrder[]; query: Partial; totalCount: number; } | { type: import("./action-types").TYPES.GET_ORDERS_ERROR; query: Partial; error: unknown; } | { type: import("./action-types").TYPES.GET_ORDERS_TOTAL_COUNT_SUCCESS; query: Partial; totalCount: number; } | Generator<(import("redux").AnyAction & { options: import("@wordpress/api-fetch").APIFetchOptions; }) | { type: string; request: import("@wordpress/api-fetch/build-types/types").APIFetchOptions; }, { items: Order[]; totalCount: number; } | undefined, Order[] | ({ data: Order[]; } & Response)>, unknown, { items: Order[]; totalCount: number; }>; export declare function getOrdersTotalCount(query: Partial): Generator<{ type: import("./action-types").TYPES.GET_ORDERS_TOTAL_COUNT_SUCCESS; query: Partial; totalCount: number; } | { type: import("./action-types").TYPES.GET_ORDERS_TOTAL_COUNT_ERROR; query: Partial; error: unknown; } | Generator<(import("redux").AnyAction & { options: import("@wordpress/api-fetch").APIFetchOptions; }) | { type: string; request: import("@wordpress/api-fetch/build-types/types").APIFetchOptions; }, { items: Order[]; totalCount: number; } | undefined, Order[] | ({ data: Order[]; } & Response)>, any, { totalCount: any; }>; //# sourceMappingURL=resolvers.d.ts.map