import type { PropCaseCollector } from "../element-extenders/map-properties"; export type ExpandProps = { /** * If true, the widget will expand vertically and horizontally to * fill all available space given to it. If multiple children of a * container are set to expand, the available space is divided * evenly between them. */ expand?: boolean; /** * If true, the widget will expand horizontally to fill all * available space given to it. If multiple children of a container * are set to expand, the available space is divided evenly between * them. */ expandHorizontal?: boolean; /** * If true, the widget will expand vertically to fill all available * space given to it. If multiple children of a container are set to * expand, the available space is divided evenly between them. */ expandVertical?: boolean; }; export declare const createExpandPropMapper: (Widget: { hexpand: boolean; vexpand: boolean; expand: boolean; }, defaults?: { v?: boolean; h?: boolean; }) => (mapper: PropCaseCollector) => PropCaseCollector;