declare const BlockEmbed: any; export declare const DEFAULT: { cssText: string; className: undefined; icon: string; }; export declare type Options = typeof DEFAULT & { text?: { orientation?: 'left' | 'right' | 'center'; children: string; childrenStyle: string; }; }; declare class Divider extends BlockEmbed { static create(options: Options): any; } export default Divider;