export type StateQueryResponseType = { results: StateQueryResponseResult[]; token?: string; }; type StateQueryResponseResult = { key: string; data: any; etag?: string; error?: string; }; export {};