import type { Provider } from '@angular/core'; import type { TuiPopover } from '@taiga-ui/cdk/services'; import type { PolymorpheusContent } from '@taiga-ui/polymorpheus'; import type { Observable } from 'rxjs'; export interface TuiSheetDialogOptions { readonly closeable: Observable | boolean; readonly data: I; readonly initial: number; readonly label: PolymorpheusContent, any>>; readonly offset: number; readonly stops: readonly string[]; readonly bar: boolean; readonly fullscreen: boolean; } export declare const TUI_SHEET_DIALOG_DEFAULT_OPTIONS: TuiSheetDialogOptions; /** * Default parameters for mobile dialog component */ export declare const TUI_SHEET_DIALOG_OPTIONS: import("@angular/core").InjectionToken>; export declare function tuiSheetDialogOptionsProvider(options: Partial): Provider;