import React from 'react';
import { IGenericImage } from './genericComponents.type';
export declare const defaultGenericComponents: {
    LINK: React.ForwardRefExoticComponent<{
        url: string;
        children: string | JSX.Element;
        className?: string;
        target?: string;
        onClick?: () => void;
        onFocus?: () => void;
        onMouseEnter?: () => void;
        onMouseLeave?: () => void;
        role?: import("../..").ROLES;
        dataTestId?: string;
        draggable?: boolean;
    } & {
        "aria-label"?: string | undefined | undefined;
        "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
        "aria-describedby"?: string | undefined | undefined;
        "aria-disabled"?: (boolean | "true" | "false") | undefined;
    } & React.RefAttributes<unknown>>;
    IMAGE: React.ForwardRefExoticComponent<IGenericImage & React.RefAttributes<unknown>>;
};
