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