import { Param } from '../types/paramTypes'; export type CombineState, TChild extends Record> = TParent & TChild; export declare function combineState, TChildState extends Record>(parentState: TParentState, childState: TChildState): CombineState;