import { FunctionComponent } from 'react';
import { DraggableProvided } from 'react-beautiful-dnd';
import Record from '../../../data-set/Record';
export interface ItemTitleProps {
    record: Record;
    provided?: DraggableProvided;
}
declare const ItemTitle: FunctionComponent<ItemTitleProps>;
export default ItemTitle;
