import * as React from 'react' import * as SynthReact from '@beatgig/synth-react' interface HeaderLinkProps { /** * The elements you want to display within this component. */ children?: React.ReactNode /** * Required to properly extend styled-components. * @see {@link https://www.styled-components.com/docs/api#caveat-with-classname} */ className?: string } type HeaderLinkComponentProps = React.AnchorHTMLAttributes & React.RefAttributes & { as?: keyof JSX.IntrinsicElements | React.ComponentType forwardedAs?: keyof JSX.IntrinsicElements | React.ComponentType } & HeaderLinkProps type HeaderLinkComponent = SynthReact.SynthComponent< HeaderLinkComponentProps, HTMLAnchorElement > /** * @since 1.0.0 */ declare const HeaderLink: HeaderLinkComponent export { HeaderLinkComponent, HeaderLinkComponentProps, HeaderLinkProps } export default HeaderLink