import type { TranslatableText } from "../../region"; import type { StackProps } from "../Stack"; /** * Properties for the `ComponentBackground` component. */ export type ComponentBackgroundProps = Omit & { /** * The HTML aria-label attribute. */ "aria-label"?: TranslatableText; /** * The HTML title attribute. */ title?: TranslatableText; }; /** * Root container for components that render a solid background. The component * is a stack which will render its children vertically by default. * * @param props Properties for the component. */ declare const ComponentBackground: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default ComponentBackground;