import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ThumbEdge` – Defines the edge type a resize thumb is attached to. * * The edge determines how the thumb behaves and is styled: * - `None` for thumbs not attached to any edge * - `Horizontal` for thumbs attached to top or bottom edges * - `Vertical` for thumbs attached to left or right edges * - `Corner` for thumbs attached to corners (affecting two edges) * * @public */ export declare const ThumbEdge: { readonly None: "none"; readonly Horizontal: "horizontal"; readonly Vertical: "vertical"; readonly Corner: "corner"; }; /** * @public */ export type ThumbEdge = ValuesOf; //# sourceMappingURL=ThumbEdge.d.ts.map