import { ComponentPropsWithoutRef, ReactNode } from 'react'; type ELIconLinkCustomProps = { 'aria-label': string; variant: 'filled' | 'outlined'; color: 'primary' | 'secondary'; children: ReactNode; disabled?: boolean; size?: 'small' | 'medium' | 'large'; 'data-id'?: string; 'data-cy'?: string; }; type ELIconLinkProps = ComponentPropsWithoutRef<'a'> & ELIconLinkCustomProps; export declare const ELIconLink: ({ href, variant, color, disabled, size, children, ...rest }: ELIconLinkProps) => import("react/jsx-runtime").JSX.Element; export {};