/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import * as i0 from "@angular/core";
/**
 * Represents a spacer in the content of components like TextArea and TextBox.
 *
 * @example
 * ```html
 * <kendo-textbox>
 *   <ng-template kendoTextBoxSuffixTemplate>
 *     <kendo-input-spacer></kendo-input-spacer>
 *     <button kendoButton icon="image"></button>
 *   </ng-template>
 * </kendo-textbox>
 * ```
 */
export declare class InputSpacerComponent {
    hostClass: boolean;
    get sizedClass(): boolean;
    get flexBasisStyle(): string;
    /**
     * Specifies the width of the Input Spacer.
     * Accepts string values for the [CSS `flex-basis`](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis) property.
     * If not set, the Input Spacer takes all available space.
     */
    width: string;
    static ɵfac: i0.ɵɵFactoryDeclaration<InputSpacerComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<InputSpacerComponent, "kendo-input-spacer, kendo-textbox-spacer", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
}
