/// import { IResource, IBehavior } from '@designable/core'; export interface IDesignerLayoutProps { prefixCls?: string | undefined; theme?: 'dark' | 'light' | (string & {}); } export interface IDesignerLayoutContext { theme?: 'dark' | 'light' | (string & {}); prefixCls: string | undefined; } export interface IWorkspaceContext { id: string; title?: string; description?: string; } export interface IDesignerComponents { [key: string]: DnFC; } export declare type DnFC = React.FC & { Resource?: IResource[]; Behavior?: IBehavior[]; };
= React.FC
& { Resource?: IResource[]; Behavior?: IBehavior[]; };