import { LayoutUtilProps } from '../../types'; import { LinkProps } from './Link'; /** * Props for the useLinkStyles hook. * @extends LayoutUtilProps */ export type UseLinkStylesProps = LayoutUtilProps & Pick; /** * Hook for generating link styles and class names. * * @param props - The link style properties * @returns Object containing linkClassNames and styleCombined */ export declare const useLinkStyles: (props: UseLinkStylesProps) => { linkClassNames: string; styleCombined: import('react').CSSProperties; };