import { KbqButtonStyles } from '@koobiq/components/button'; import { KbqComponentColors } from '@koobiq/components/core'; import { KbqResizerSizeChangeEvent } from '@koobiq/components/resizer'; import { KbqScrollbar } from '@koobiq/components/scrollbar'; import * as i0 from "@angular/core"; export declare class KbqContentPanelAside { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class KbqContentPanelHeaderTitle { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class KbqContentPanelHeaderActions { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class KbqContentPanelHeader { /** * @docs-private */ protected readonly contentPanelContainer: KbqContentPanelContainer; /** * @docs-private */ protected readonly buttonStyles: typeof KbqButtonStyles; /** * @docs-private */ protected readonly componentColors: typeof KbqComponentColors; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class KbqContentPanelBody { /** * @docs-private */ readonly scrollbar: import("@angular/core").Signal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class KbqContentPanelFooter { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class KbqContentPanel { private readonly destroyRef; private readonly renderer; private readonly elementRef; private readonly contentPanelBody; constructor(); private handleContentBodyScroll; private setupContentHeaderShadow; private setupContentFooterShadow; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class KbqContentPanelContainer { /** * Whether the content panel is opened. * * @default false */ readonly opened: import("@angular/core").InputSignalWithTransform; /** * Emits event when the content panel opened state is changed. */ readonly openedChange: import("@angular/core").OutputEmitterRef; /** * Whether the content panel can not be closed by clicking on the close button or pressing the ESCAPE key. * * @default false */ readonly disableClose: import("@angular/core").InputSignalWithTransform; /** * Whether the content panel can not be closed by pressing the ESCAPE key. */ readonly disableCloseByEscape: import("@angular/core").InputSignalWithTransform; /** * Whether the content panel resizer is disabled. */ readonly disableResizer: import("@angular/core").InputSignalWithTransform; /** * Minimum width of the `KbqContentPanel`. * * @default 480 */ readonly minWidth: import("@angular/core").InputSignalWithTransform; /** * Width of the `KbqContentPanel`. * * @default 640 */ readonly width: import("@angular/core").InputSignalWithTransform; /** * Max width of the `KbqContentPanel`. * * @default 800 */ readonly maxWidth: import("@angular/core").InputSignalWithTransform; /** * @docs-private */ protected readonly openedState: import("@angular/core").WritableSignal; /** * @docs-private */ protected readonly widthState: import("@angular/core").WritableSignal; /** * Whether the content panel is opened. */ readonly isOpened: import("@angular/core").Signal; /** * @docs-private */ protected readonly contentAnimationState: import("@angular/core").Signal<{ value: boolean; params: { marginRight: number; }; }>; constructor(); /** * Toggles the content panel opened state. */ toggle(): void; /** * Opens the content panel. */ open(): void; /** * Closes the content panel. */ close(): void; /** * @docs-private */ protected handleResizerDBLClick(event: MouseEvent): void; /** * @docs-private */ protected handleResizerSizeChange({ width }: KbqResizerSizeChangeEvent): void; /** * @docs-private */ protected handleEscapeKeydown(event: KeyboardEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }