import { CoreOptions } from "medium-editor"; import { MediumEditorOptions } from "../../../../types"; export declare const getMediumEditorOptions: (defaultOptions: CoreOptions, mediumEditorOptions?: MediumEditorOptions) => CoreOptions; interface CreateInitialTextValueArgs { type: string; tag?: string; alignment?: string; } export declare const createInitialTextValue: ({ type, alignment, tag }: CreateInitialTextValueArgs) => { type: string; typography: string | undefined; alignment: string; tag: string; }; export {};