import { IImageResizeFactor } from './interface';
/**
 * Default Markdown formats config for adapter
 */
export declare const markdownFormatTags: {
    [key: string]: string;
};
/**
 * Default selection formats config for adapter
 */
export declare const markdownSelectionTags: {
    [key: string]: string;
};
/**
 * Default Markdown lists config for adapter
 */
export declare const markdownListsTags: {
    [key: string]: string;
};
/**
 * Default html key config for adapter
 */
export declare const htmlKeyConfig: {
    [key: string]: string;
};
/**
 * Default  markdown key config for adapter
 */
export declare const markdownKeyConfig: {
    [key: string]: string;
};
/**
 * PasteCleanup Grouping of similar functionality tags
 */
export declare const pasteCleanupGroupingTags: {
    [key: string]: string[];
};
/**
 * PasteCleanup Grouping of similar functionality tags
 */
export declare const listConversionFilters: {
    [key: string]: string;
};
/**
 * Dom-Node Grouping of self closing tags
 *
 * @hidden
 */
export declare const selfClosingTags: string[];
/**
 * Resize factor for image.
 *
 *@hidden
 *
 */
export declare const imageResizeFactor: IImageResizeFactor;
/**
 * Mention restrict key configuration.
 *
 * @hidden
 *
 */
export declare const mentionRestrictKeys: string[];
