import { BlockTypes } from '../const/block-enums';
export interface BlockFormState {
    _id: string;
    blockVersion: number;
    blockId: string;
    content: any;
    created: string;
    defaultChoice?: any;
    function?: any;
    group: string;
    meta: any;
    name: string;
    type: BlockTypes.TEXT | BlockTypes.COMPLEX | BlockTypes.MEDIA | undefined;
    version: number;
}
