import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ResizeMode` - The `ResizeMode` object is used to describe the different types of resize modes. * * @public */ export declare const ResizeMode: { readonly Both: "both"; readonly Horizontal: "horizontal"; readonly Vertical: "vertical"; readonly None: "none"; }; /** * @public */ export type ResizeMode = ValuesOf; //# sourceMappingURL=Resize.d.ts.map