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