import { ComponentPropsWithoutRef, ReactNode } from 'react'; type ELTagButtonProps = ComponentPropsWithoutRef<'button'> & { state?: 'focused' | 'active'; variant?: 'primary' | 'secondary'; label?: string; leadingIcon?: ReactNode; trailingIcon?: ReactNode; }; export declare const ELTagButton: ({ state, label, variant, leadingIcon, trailingIcon, ...rest }: ELTagButtonProps) => import("react/jsx-runtime").JSX.Element; export {};