import React from 'react'; type BoxProps = { variant?: 'vertical' | 'horizontal'; title?: string; header?: React.ReactNode; ariaLabel?: string; children: React.ReactNode; }; declare const Box: React.FC; export default Box; //# sourceMappingURL=Box.d.ts.map