export declare type Query = string; export declare type QueryObjectItem = string | Array; export interface QueryObject { [x: string]: QueryObjectItem; } declare type AllowedQueryValues = string | number | boolean | object; export declare type QueryValue = AllowedQueryValues | Array; export interface QueryValues { [x: string]: QueryValue; } export {};