export declare enum ToolbarInputDataAttributes { /** * Present when the input is disabled. */ disabled = "data-disabled", /** * Indicates the orientation of the toolbar. * @type {'horizontal' | 'vertical'} */ orientation = "data-orientation", /** * Present when the input remains focusable when disabled. */ focusable = "data-focusable", /** * Present when the input is the active item in the toolbar. */ highlighted = "data-highlighted" }