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