import { Ref } from 'react'; import { BaseButtonPropsAsLink } from '../Primitive/ButtonPrimitiveAsLink'; import { AvailableSizes } from '../../Button/Primitive/ButtonPrimitive'; export type ButtonPrimaryAsLinkPropsType = Omit, 'className'>; declare function PrimaryAsLink(props: ButtonPrimaryAsLinkPropsType, ref: Ref): import("react/jsx-runtime").JSX.Element; declare const ButtonPrimaryAsLink: (props: ButtonPrimaryAsLinkPropsType & { ref?: Ref; }) => ReturnType; export default ButtonPrimaryAsLink;