import type { AlertClass, AlertProperties, AlertTheme } from './alert.theme';
import type { FlowbiteThemeService } from 'flowbite-angular';
import { InjectionToken } from '@angular/core';
import * as i0 from "@angular/core";
/**
 * `InjectionToken` used to import `AlertTheme` value
 *
 * @example
 * ```
 * var theme = inject(FLOWBITE_ALERT_THEME_TOKEN)
 * ```
 */
export declare const FLOWBITE_ALERT_THEME_TOKEN: InjectionToken<AlertTheme>;
export declare class AlertThemeService implements FlowbiteThemeService<AlertProperties> {
    private readonly baseTheme;
    getClasses(properties: AlertProperties): AlertClass;
    static ɵfac: i0.ɵɵFactoryDeclaration<AlertThemeService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<AlertThemeService>;
}
