import { TemplateRef } from '@angular/core'; import { MatBottomSheet } from '@angular/material/bottom-sheet'; export declare class BottomSheetComponent { private bottomSheet; templateRef: TemplateRef; title: string; isOpened: boolean; constructor(bottomSheet: MatBottomSheet); open: () => void; close: () => void; } interface OptionTemplateContext { $implicit: any; } export {};