/// <reference types="react" />
import { ContentNode } from './content-node.interface';
/**
 * Represents a Block of content provided by the Block Editor
 *
 * @export
 * @interface Block
 */
export interface Block {
    content: ContentNode[];
    type: string;
}
/**
 * Props for a contentlet inside the Block Editor
 *
 * @export
 * @interface DotContentletProps
 */
export interface DotContentletProps {
    title: string;
    baseType: string;
    inode: string;
    archived: boolean;
    working: boolean;
    locked: boolean;
    contentType: string;
    live: boolean;
    identifier: string;
    image: string;
    imageContentAsset: string;
    urlTitle: string;
    url: string;
    titleImage: string;
    urlMap: string;
    hasLiveVersion: boolean;
    hasTitleImage: boolean;
    sortOrder: number;
    modUser: string;
    __icon__: string;
    contentTypeIcon: string;
    language: string;
    description: string;
    shortDescription: string;
    salePrice: string;
    retailPrice: string;
    mimeType: string;
    thumbnail?: string;
}
/**
 * Props for a block inside the Block Editor Component
 *
 * @export
 * @interface BlockProps
 */
export interface BlockProps {
    children: React.ReactNode;
}
/**
 * Represents the different types of Blocks that can be used in the Block Editor
 *
 * @export
 * @enum {number}
 */
export declare enum Blocks {
    PARAGRAPH = "paragraph",
    HEADING = "heading",
    TEXT = "text",
    BULLET_LIST = "bulletList",
    ORDERED_LIST = "orderedList",
    LIST_ITEM = "listItem",
    BLOCK_QUOTE = "blockquote",
    CODE_BLOCK = "codeBlock",
    HARDBREAK = "hardBreak",
    HORIZONTAL_RULE = "horizontalRule",
    DOT_IMAGE = "dotImage",
    DOT_VIDEO = "dotVideo",
    TABLE = "table",
    DOT_CONTENT = "dotContent"
}
/**
 * Represents the validation state of a Block Editor instance
 *
 * @interface BlockEditorState
 * @property {boolean} isValid - Whether the blocks structure is valid
 * @property {string | null} error - Error message if blocks are invalid, null otherwise
 */
export interface BlockEditorState {
    error: string | null;
}
