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