import { Wrap as IWrap } from "../response.js"; import { Component } from "../../components/component.js"; export { IWrap }; export declare class WrapBaseImpl extends Component { direction(direction: IWrap['direction']): this; crossAxisAlignment(crossAxisAlignment: IWrap['crossAxisAlignment']): this; /** * The spacing between each child of the wrap. */ spacing(spacing: IWrap['spacing']): this; /** * The spacing between each run of the wrap. */ runSpacing(runSpacing: IWrap['runSpacing']): this; alignment(alignment: IWrap['alignment']): this; runAlignment(runAlignment: IWrap['runAlignment']): this; horizontalDirection(horizontalDirection: IWrap['horizontalDirection']): this; verticalDirection(verticalDirection: IWrap['verticalDirection']): this; }