import { AfterContentInit } from '@angular/core'; import { DialogComponent } from './dialog.component'; import * as i0 from "@angular/core"; type AlertDialogVariant = 'success' | 'error' | 'warning' | 'informative' | 'neutral'; export declare class AlertDialogIcon { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class AlertDialogHeading { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class AlertDialogBody { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class AlertDialogActions { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Implements layout and style of the alert dialog */ export declare class AlertDialogComponent implements AfterContentInit { variant?: AlertDialogVariant; /** * @default "horizontal" */ actionsOrientation?: 'vertical' | 'horizontal'; icon?: AlertDialogIcon; heading?: AlertDialogHeading; body?: AlertDialogBody; actions?: AlertDialogActions; ngAfterContentInit(): void; /** * Reference to the wrapped `sp-dialog` component. */ dialog?: DialogComponent; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};