import { BlockType as PCBlockType } from '@gravity-ui/page-constructor'; import { BlockType } from '../models/common'; type GetConfigForCreateReadableContent = () => { [x in BlockType | PCBlockType]: { fields: string[]; }; }; /** * Func for create extended typography config for page-constructor * * @returns - { * [blockTypes.YFM]: [ * { * fields: ['text'], * transformer: yfmTransformer, * }, * ], * } */ export declare const getExtendTypographyConfig: () => {}; /** * Func for create readable content func * * @returns - { * [blockTypes.YFM]: { * fields: ['text'], * transformer: yfmTransformer, * }, * } */ export declare const getConfigForCreateReadableContent: GetConfigForCreateReadableContent; export {};