/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { InputSearchExpressionGroup } from '../dialogs/search'; import { SandDance } from '@msrvida/sanddance-react'; export interface Props { item: object; showSystemFields?: boolean; onSearch?: { (event: React.MouseEvent, search: InputSearchExpressionGroup[]): void; }; bingSearchDisabled: boolean; disabled: boolean; columns: SandDance.types.Column[]; } export declare function DataItem(props: Props): JSX.Element;