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