import { ComponentPropsWithRef } from 'react'; import { AdminButtonType } from './admin-button-classes'; interface Props extends ComponentPropsWithRef<'a'> { href: string; linkType: AdminButtonType; disabled?: boolean; } export default function PrimaryLink({ href, children, linkType, disabled, className, ...otherProps }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=primary-link.component.d.ts.map