import { StyledProps } from '@kuma-ui/system'; declare const defaultLinkTag = "a"; type LinkSpecificProps = {}; declare const isLinkProps: (propName: unknown) => propName is LinkSpecificProps; declare const linkDefaultProps: StyledProps; declare const linkHandler: (props: LinkSpecificProps) => {}; export { LinkSpecificProps, defaultLinkTag, isLinkProps, linkDefaultProps, linkHandler };