/**----------------------------------------------------------------------------------------- * Copyright © 2025 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]({% slug controltypes_toolbar %}#toc-separators). * * Use this component to add a visual separator between ToolBar tools. * * @example * ```html * * * * * * ``` */ 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; static ɵcmp: i0.ɵɵComponentDeclaration; }