import * as React from 'react' import * as SynthReact from '@beatgig/synth-react' interface TagProps { /** * The elements you want to display within the tag. */ children?: React.ReactNode /** * Required to properly extend styled-components. * @see {@link https://www.styled-components.com/docs/api#caveat-with-classname} */ className?: string } type TagComponentProps = React.HTMLAttributes & React.RefAttributes & { as?: keyof JSX.IntrinsicElements | React.ComponentType forwardedAs?: keyof JSX.IntrinsicElements | React.ComponentType } & TagProps type TagComponent = SynthReact.SynthComponent /** * @since 1.2.0 */ declare const Tag: TagComponent export { TagComponent, TagComponentProps, TagProps } export default Tag