import { Enumerable } from "../common/Enumerable.type"; export declare type StateQueryType = { filter: StateQueryFilter; sort: StateQuerySort[]; page: StateQueryPagination; }; declare type StateQuerySort = { key: string; order?: "ASC" | "DESC"; }; declare type StateQueryPagination = { limit: number; token?: string; }; declare type StateQueryFilter = { AND?: Enumerable; OR?: Enumerable; EQ?: Enumerable; IN?: Enumerable; }; declare type StateQueryFilterInput = { AND?: Enumerable; OR?: Enumerable; EQ?: Enumerable; IN?: Enumerable; [key: string]: any; }; export {};