import type { SynapseModule } from './createSynapse/index';
export interface DehydrateModuleOptions<TState extends Record<string, any>> {
    state?: Partial<TState>;
}
export declare const dehydrateModule: <TState extends Record<string, any>, TDispatcher, TSelectors>(externalSynapseModule: SynapseModule<TState, TDispatcher, TSelectors>, options?: DehydrateModuleOptions<TState>) => Promise<TState>;
