type BottomSheetActions = { type: "RegisterChild"; children: string; } | { type: "RegisterDraghandleRef"; draghandleRef: HTMLDivElement; } | { type: "UnregisterChild"; children: string; }; type StateProps = { bottomSheetChildren?: string[]; }; declare function stateReducer(state: T, action: BottomSheetActions): T; export default stateReducer; //# sourceMappingURL=stateReducer.d.ts.map