import { CSSProperties } from 'react'; import { MarkKeys, Element } from 'slate'; declare const isDev: boolean; type DefinedType = string | [string, Record]; declare const INLINE_TYPES: DefinedType[]; declare const VOID_TYPES: DefinedType[]; declare const LIST_TYPES: string[]; type TextAlign = Exclude; declare const TEXT_ALIGN_TYPES: TextAlign[]; type NoEffectWrapTypes = 'paragraph' | 'heading-one' | 'heading-two' | 'heading-three' | 'heading-four' | 'heading-five' | 'heading-six' | 'block-quote' | 'bulleted-list' | 'numbered-list'; declare const NO_EFFECT_WRAP_TYPES: NoEffectWrapTypes[]; interface HotKeys { marks: Record; nodes: Record; aligns: Record; } declare const HOTKEYS: HotKeys; export { DefinedType, HOTKEYS, HotKeys, INLINE_TYPES, LIST_TYPES, NO_EFFECT_WRAP_TYPES, NoEffectWrapTypes, TEXT_ALIGN_TYPES, TextAlign, VOID_TYPES, isDev };