import type { PresetHOC } from '../types/PresetHOC'; type Dimension = { width?: number; height?: number; }; /** * Add a property to the Item class to inform that it cannot render below a specified size * @param {LayoutItem} Item The item to enhance * @param {{ width?: number, height?: number }} [minimumSize = {}] Minimum item size */ export declare const withMinimumSize: PresetHOC<{ minimumSize?: Dimension; }, Dimension>; export {}; //# sourceMappingURL=withMinimumSize.d.ts.map