import type { CustomElement } from '../Components/Abstracts/CustomElement'; import type { ControlBehaviorBase, ControlBehaviorReturn } from './Abstracts/Behavior'; /** * Represents the `IValueable` interface. * * @template TType - The type of the value. * @public */ export interface IValueableProps { value: TType; } /** * @public */ export declare const Valueable: >(base: T) => ControlBehaviorReturn>; /** * @public */ export declare namespace IValueableProps { const DEFAULTS: IValueableProps; } //# sourceMappingURL=Valueable.d.ts.map