/** * A flexible space that expands along the major axis of its containing layout. * * It's useful as a shortcut for filling all available space between elements. * * @example * ```tsx * import {render, Box, Text, Spacer} from 'tinky'; * * render( * * Left * * Right * * ); * ``` */ export declare function Spacer(): import("react").JSX.Element;