import React from "react"; import { PrimitiveBaseProps, PrimitiveWithSizing, PrimitiveWithChildrenProps } from "../helpers/types"; interface Props extends React.HTMLAttributes, PrimitiveBaseProps, PrimitiveWithSizing, PrimitiveWithChildrenProps { } export declare function Stack(props: Props): JSX.Element; export {};