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