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