import { View } from '@nativescript/core/ui/core/view'; import { BottomSheetOptions, ViewWithBottomSheetBase } from './bottomsheet-common'; declare module '@nativescript/core/ui/core/view' { interface View { _bottomSheetFragment: com.google.android.material.bottomsheet.BottomSheetDialogFragment; } } export declare class ViewWithBottomSheet extends ViewWithBottomSheetBase { _bottomSheetFragment: com.nativescript.material.bottomsheet.BottomSheetDialogFragment; protected _hideNativeBottomSheet(parent: View, whenClosedCallback: () => void): void; protected _showNativeBottomSheet(parent: View, options: BottomSheetOptions): void; } export declare function overrideBottomSheet(): void; export declare function install(): void;