/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { AfterViewInit } from '@angular/core';
import { ToolBarToolComponent } from './toolbar-tool.component';
import * as i0 from "@angular/core";
/**
 * Represents the [Kendo UI ToolBar Spacer for Angular](https://www.telerik.com/kendo-angular-ui/components/toolbar/control-types#separators).
 *
 * Use the ToolBar Spacer to add flexible space between ToolBar tools.
 *
 * @example
 * ```html
 * <kendo-toolbar>
 *      <kendo-toolbar-button text="Button 1"></kendo-toolbar-button>
 *      <kendo-toolbar-spacer></kendo-toolbar-spacer>
 *      <kendo-toolbar-button text="Button 2"></kendo-toolbar-button>
 * </kendo-toolbar>
 * ```
 */
export declare class ToolBarSpacerComponent extends ToolBarToolComponent implements AfterViewInit {
    /**
     * @hidden
     */
    readonly __isSpacer = true;
    constructor();
    /**
     * @hidden
     */
    canFocus(): boolean;
    /**
     * @hidden
     */
    focus(): void;
    /**
     * @hidden
     */
    handleKey(): boolean;
    ngAfterViewInit(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarSpacerComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarSpacerComponent, "kendo-toolbar-spacer", ["kendoToolBarSpacer"], {}, {}, never, never, true, never>;
}
