import { type ButtonHTMLAttributes, type ReactNode, type Ref } from 'react';
export type EchoClickButtonProps = ButtonHTMLAttributes & {
icon?: ReactNode;
ref?: Ref;
};
export declare const EchoClickButton: ({ children, className, disabled, icon, onClick, ref, type, ...buttonProps }: EchoClickButtonProps) => import("react/jsx-runtime").JSX.Element;