import { AnyAction, SideEffect } from '@fluentui/state'; import * as React from 'react'; declare type Dispatch = (e: DispatchEvent, action: Action, ...args: Parameters) => void; declare type DispatchEffect = (e: DispatchEvent, prevState: State, nextState: State) => void; declare type DispatchEvent = React.SyntheticEvent | Event; export declare const useDispatchEffect: (dispatchEffect: DispatchEffect) => [Dispatch, SideEffect]; export {};