export interface ISearchResultRow {
    Cells: ISearchResultCell[];
}
export type ISearchResultCellValueType = 'Edm.String' | 'Edm.Int64' | 'Edm.Int32' | 'Edm.Double' | 'Edm.DateTime' | 'Edm.Boolean' | 'Edm.Guid';
export interface ISearchResultCell {
    Key: string;
    Value: string;
    ValueType: ISearchResultCellValueType;
}
//# sourceMappingURL=ISearchResultRow.d.ts.map