import { ReactChild, RefObject } from 'react'; import { ContentNodeState, BlockProps } from '.'; import { ContentBlockNode } from './draft-js'; export interface LinkProps { entityKey: string; contentState: ContentNodeState; children?: ReactChild; } export interface LinkSpanProps { children?: ReactChild; } export interface SidebarProps { forwardRef: RefObject; } export declare enum Label { H1 = "fas fa-heading", Blockquote = "fas fa-quote-left", UL = "fas fa-list-ul", OL = "fas fa-list-ol", 'Code Block' = "fas fa-code" } export interface StyleControlButtonProps { label: keyof typeof Label; active: boolean; onToggle: Function; style: object; } export interface ImageProps { block: ContentBlockNode; contentState: ContentNodeState; blockProps: BlockProps; }