import React, { ReactNode } from 'react'; interface HStackPropsType extends React.CSSProperties { as?: 'VStack' | 'HStack'; children: ReactNode; className?: string; onClick?: VoidFunction; onMouseDown?: VoidFunction; onFocusCapture?: VoidFunction; } export declare const Stack: React.FC; export {};