import * as React from 'react'; import { IBoard } from '../types'; interface IDrafts { drafts: Array<{ message: IBoard; timeStamp: string; }>; onClose: () => void; onSelect: (message: IBoard) => void; } export declare const Drafts: (props: IDrafts) => React.JSX.Element; export {};