import type { BlockAdminSettings, BlockRendererSettings, BlockActionTypes, BlockTypeInterface } from '../types'; /** * Returns an action object used in registering block renderer settings. * * @param blockRendererSettings Block renderer settings which define block renderer behavior. * @param name The block name. * * @return Action object. */ export declare const setBlockRendererSettings: (blockRendererSettings: BlockRendererSettings, name: string) => BlockActionTypes; /** * Returns an action object used in registering block editor configuration. * * @param blockAdminSettings Block admin settings which defines block behavior at admin. * @param name The block name. * * @return Action object. */ export declare const setBlockAdminSettings: (blockAdminSettings: BlockAdminSettings, name: string) => BlockActionTypes; /** * Returns an action object used in signalling that block types have been added. * * @param blockTypes Block types received. * * @return Action object. */ export declare const addBlockTypes: (blockTypes: BlockTypeInterface | BlockTypeInterface[]) => BlockActionTypes; //# sourceMappingURL=actions.d.ts.map