export interface QueryResult { Count: number | null; OtherRecords: null | Array<{ [key: string]: string; }> | null; Records: null | Array<{ [key: string]: string; }> | null; Summaries: null | { [key: string]: { [key: string]: string; }; } | null; }