import type { CustomElement } from '../Components/Abstracts/CustomElement'; import type { ControlBehaviorBase, ControlBehaviorReturn } from './Abstracts/Behavior'; /** * Represents the `IDisableable` interface. * * @public */ export interface IDisableableProps { disabled: boolean; } /** * @public */ export declare const Disableable: >(base: T) => ControlBehaviorReturn; /** * @public */ export declare namespace IDisableableProps { const DEFAULTS: IDisableableProps; } //# sourceMappingURL=Disableable.d.ts.map