import { ActionType } from './RtcContext'; import { UIKitUser, CallbacksInterface } from './PropsContext'; declare type stateType = { max: UIKitUser[]; min: UIKitUser[]; isScreensharing: boolean; }; export declare const initState: { max: UIKitUser[]; min: UIKitUser[]; isScreensharing: boolean; }; declare const reducer: (state: stateType, action: ActionType) => { max: UIKitUser[]; min: UIKitUser[]; isScreensharing: boolean; }; export default reducer;