import type { DataRecord } from 'grapesjs'; import { GlobalStyleProps } from './globalStylesSchema'; export interface GlobalStylesConfig { default?: GlobalStyleProps[]; /** * If `true`, makes the Global Styles available in the class selector UI (Selector Manager), * but only when the `selector` is a single CSS class (e.g., `selector: '.my-class'`). * * Useful for allowing users to reuse Global Styles directly from the class selector. */ showInClassSelectors?: boolean; } export interface GlobalStyleRecord extends DataRecord { } export * from './globalStylesSchema';