import { type ElementType } from 'react'; import { type LinkProps, type SpiritLinkProps } from '../../types'; export interface LinkStyles { classProps: string | null; props: Partial>; } export declare function useLinkStyleProps(props: SpiritLinkProps): LinkStyles;