import { ComposePreparedOptions, MergePropsResult, GenericDictionary } from './types'; /** * Merge props takes in state and compose options, and resolves slots and slotProps. * It's expected that the component will call mergeProps(state, options) from within * render; after resolving state and before rendering slots and slotProps. */ export declare function mergeProps(state: TState, options: ComposePreparedOptions): MergePropsResult;