import React from 'react'; import { AProps } from './A.type'; import { PolymorphicRef } from '../../utils/Polymorphic'; import { StyledAProps } from './StyledA'; export declare function useA(props: AProps): { domRef: React.MutableRefObject>; as: string | T; children: React.ReactNode; styledProps: StyledAProps; aProps: { children: React.ReactNode; } & Omit, "children" | "ref" | "color" | "as" | "isShowIcon">; isShowIcon: boolean; color: string; };