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