import * as React from 'react'; import { BoxProps } from '../../primitives/Box'; type BaseLinkProps = BoxProps & { disabled?: boolean; isExternal?: boolean; }; declare const BaseLinkImpl: (props: Omit, "ref"> & React.RefAttributes) => React.ReactNode; type BaseLinkComponent = (props: BaseLinkProps) => React.ReactNode; export { BaseLinkImpl as BaseLink }; export type { BaseLinkProps, BaseLinkComponent }; //# sourceMappingURL=BaseLink.d.ts.map