import React from 'react'; import { IBoard } from '../types'; interface IBoardEditorPreview { onClose: () => void; onSend?: () => void; onSchedule?: () => void; onSaveDraft?: () => void; onSelectDraft?: () => void; boardValue: IBoard; } export declare const BoardEditorPreview: (props: IBoardEditorPreview) => React.JSX.Element; export {};