import React from 'react'; type BodyProps = { variant?: 'default' | 'bodySemi' | 'bodyS' | 'bodySemiS' | 'bodyXS' | 'bodySemiXS'; className?: string; children: React.ReactNode; }; declare const Body: React.FC; export default Body; //# sourceMappingURL=Body.d.ts.map