import type { CustomElement } from '../Components/Abstracts/CustomElement'; import { Inset } from '../Types/Inset'; import type { ControlBehaviorBase, ControlBehaviorReturn } from './Abstracts/Behavior'; /** * Represents the `IInsetable` interface. * * @public */ export interface IInsetableProps { inset: Inset | Array | null; } /** * @public */ export declare const Insetable: >(base: T) => ControlBehaviorReturn; /** * @public */ export declare namespace IInsetableProps { const DEFAULTS: IInsetableProps; } //# sourceMappingURL=Insetable.d.ts.map