import { INotionFabricatorOptions } from '@nishans/fabricator'; import { TBlock } from '@nishans/types'; import { IBlockMap } from '../../types'; /** * Generates block object and attaches them to corresponding key of the block map using name and id of the block as key * @param block block object * @param block_map Block map to populate * @param options Props passed to the block classes */ export declare function populateBlockMap(block: TBlock, block_map: IBlockMap, options: INotionFabricatorOptions): Promise;