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