import * as React from "react"; import { A11yTitleType, AlignSelfType, GridAreaType, MarginType } from "../../utils"; export interface StackProps { a11yTitle?: A11yTitleType; alignSelf?: AlignSelfType; anchor?: "center" | "left" | "right" | "top" | "bottom" | "top-left" | "bottom-left" | "top-right" | "bottom-right"; fill?: boolean; gridArea?: GridAreaType; guidingChild?: number | "first" | "last"; interactiveChild?: number | "first" | "last"; margin?: MarginType; } declare const Stack: React.FC; export { Stack };