export type BottomSheetBaseMaxHeight = number;
export type BottomSheetBaseGetMaxHeightParams = {
    minHeight: number;
    maxHeight: number;
};
export type BottomSheetBaseGetMaxHeight = (params: BottomSheetBaseGetMaxHeightParams) => BottomSheetBaseMaxHeight;
