/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Represents the toolbar template of the Grid. * * The template context provides: * - `position`—The position where the toolbar template renders. Possible values: `top`, `bottom`, and `both`. * * @example * ```html * * * * * * * * ``` */ export declare class ToolbarTemplateDirective { templateRef: TemplateRef; _position: 'top' | 'bottom' | 'both'; /** * Sets the position of the toolbar. ([See example](https://www.telerik.com/kendo-angular-ui/components/grid/toolbar/toolbar-template#setting-the-toolbar-position)). * * @default 'top' */ set position(position: 'top' | 'bottom' | 'both'); get position(): 'top' | 'bottom' | 'both'; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }