import { BlockProperties, Plugin } from 'grapesjs'; export interface PluginOptions { /** * Use this to extend the default flexbox block. * @default {} */ flexboxBlock?: Partial; /** * Classes prefix. * @default '' */ stylePrefix?: string; /** * Row label. * @default 'Row' */ labelRow?: string; /** * Column label. * @default 'Column' */ labelColumn?: string; } declare const plugin: Plugin; export { plugin as default, }; export {};