import { Block, BlockStyle, Style } from "./types/types";
export declare const initBlock: () => Block;
export declare const createInlineStyleRanges: (styles: BlockStyle[]) => {
    offset: number;
    length: number;
    style: Style;
}[];
export declare const validateStyle: (text: string, styles: BlockStyle[]) => void;
export declare const removeUndefinedProperties: (obj: any) => void;
export declare const objectIsEmpty: (obj: any) => boolean;
