import { ForwardRefExoticComponent } from "react"; import { BoxProps } from "../Box"; import { ICON_STYLE_PREFIX, ICON_TYPE } from "../Icon"; import { STATUS_VARIANT } from "../../types"; export interface ReferenceProps { as?: any; disabled?: boolean; icon?: ICON_TYPE; iconPrefix?: ICON_STYLE_PREFIX; badgeVariant?: STATUS_VARIANT; badgeLabel?: string; noLink?: boolean; [key: string]: any; } export declare type ReferenceWithReferenceGroup = ForwardRefExoticComponent & { Group: (props: BoxProps) => JSX.Element; }; export declare const Reference: ReferenceWithReferenceGroup;