import type { TCommonComponentConfig } from 'autoprops'; import type { FC } from 'react'; import type { AnyAction } from 'redux'; import type { ThunkDispatch } from 'redux-thunk'; import type { TAnyObject } from 'tsfn'; import type { TComponents, TPackageJson, TCommonComponentControls } from '../types'; export declare type TMetaState = { components: TComponents | null; componentKey: string | null; propsIndex: string; selectedElementPath: string; componentConfig: TCommonComponentConfig | null; componentControls: TCommonComponentControls | null; Component: FC | null; componentProps: Readonly; componentPropsChildrenMap: Readonly; packageJson: TPackageJson | null; readme: string | null; }; export declare type TMetaDispatch = ThunkDispatch;