import type { SidebarPageContentClass } from './sidebar-page-content.theme';
import { SidebarPageContentThemeService } from './sidebar-page-content.theme.service';
import { SidebarComponent } from './sidebar.component';
import { BaseComponent } from 'flowbite-angular';
import { InjectionToken } from '@angular/core';
import * as i0 from "@angular/core";
export declare const FLOWBITE_SIDEBAR_PAGE_CONTENT_CUSTOM_STYLE_DEFAULT_VALUE: InjectionToken<{
    root?: {
        base?: string | undefined;
        displayMode?: {
            push?: string | undefined;
            over?: string | undefined;
            backdrop?: string | undefined;
        } | undefined;
    } | undefined;
}>;
export declare const sidebarPageContentDefaultValueProvider: import("@angular/core").EnvironmentProviders;
/**
 * @see https://flowbite.com/docs/components/sidebar/
 */
export declare class SidebarPageContentComponent extends BaseComponent<SidebarPageContentClass> {
    /**
     * Service injected used to generate class
     */
    readonly themeService: SidebarPageContentThemeService;
    /**
     * The parent `SidebarComponent`
     */
    readonly sidebarComponent: SidebarComponent;
    /**
     * Set the custom style for this sidebar page content
     */
    customStyle: import("@angular/core").ModelSignal<{
        root?: {
            base?: string | undefined;
            displayMode?: {
                push?: string | undefined;
                over?: string | undefined;
                backdrop?: string | undefined;
            } | undefined;
        } | undefined;
    }>;
    fetchClass(): SidebarPageContentClass;
    static ɵfac: i0.ɵɵFactoryDeclaration<SidebarPageContentComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SidebarPageContentComponent, "flowbite-sidebar-page-content", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
}
