import { ReactNode } from 'react'; import { GetEditor } from './'; export declare type ReturnProps = { [P in keyof T]: T[P]; } & { children?: ReactNode; }; export declare type IWrappedComponent = ReturnProps & { getEditor: GetEditor; };