import { type HTMLChakraProps } from "../../styled-system";
export interface SpacerProps extends HTMLChakraProps<"div"> {
}
/**
 * A flexible flex spacer that expands along the major axis of its containing flex layout.
 * It renders a `div` by default, and takes up any available space.
 *
 * @see Docs https://chakra-ui.com/docs/components/flex#using-the-spacer
 */
export declare const Spacer: import("../..").ChakraComponent<"div", {}>;
