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