import { default as React } from 'react'; /** ------------------------------------------------------------------------------------------------- * TextSpacing * -----------------------------------------------------------------------------------------------*/ type TextSpacingProps = React.ComponentPropsWithoutRef<'div'> & { asChild?: boolean; }; /** * TextSpacing is used to add spacing between text elements. * Wrap the elements you want to add spacing in the TextSpacing component. * The spacing will be applied to Teddy's Text and Heading components. * https://www.figma.com/file/2QIcZVqP99ZKY4rNW7VuSx/Purpur-DS---Foundations-Library?type=design&node-id=9470-27984&mode=design&t=vJa9KJPym42lrLT9-4 */ declare const TextSpacing: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { asChild?: boolean; } & React.RefAttributes>; export { TextSpacing }; export type { TextSpacingProps };