import React, { FC } from 'react'; import { LcdpEditorContextValue } from './EditContext'; export declare function canAcceptsRef(Comp: any): any; declare const withEditContextState: >(Comp: React.FC) => (selector: (editContext: LcdpEditorContextValue, originProps: Record) => Record) => ((props: T) => JSX.Element) | React.ForwardRefExoticComponent & React.RefAttributes>; export default withEditContextState;