import { InjectionToken, type Provider } from '@angular/core';
export interface TuiMobileDialogOptions<I = undefined> {
    readonly actions: readonly string[];
    readonly data: I;
    readonly label: string;
}
export declare const TUI_MOBILE_DIALOG_DEFAULT_OPTIONS: TuiMobileDialogOptions;
/**
 * Default parameters for mobile dialog component
 */
export declare const TUI_MOBILE_DIALOG_OPTIONS: InjectionToken<TuiMobileDialogOptions<undefined>>;
export declare function tuiMobileDialogOptionsProvider(options: Partial<TuiMobileDialogOptions<unknown>>): Provider;
