import { CssNumber } from '@breadstone/mosaik-themes'; import type { CustomElement } from '../Components/Abstracts/CustomElement'; import { Size } from '../Types/Size'; import type { ControlBehaviorBase, ControlBehaviorReturn } from './Abstracts/Behavior'; /** * Represents the `IGapable` interface. * * @public */ export interface IGapableProps { gap: CssNumber | Size; } /** * @public */ export declare const Gapable: >(base: T) => ControlBehaviorReturn; /** * @public */ export declare namespace IGapableProps { const DEFAULTS: IGapableProps; } //# sourceMappingURL=Gapable.d.ts.map