import { type ButtonHTMLAttributes, type ReactNode, type Ref } from 'react';
type EchoButtonV2Props = Omit, 'children'> & {
children?: ReactNode;
maxStreaks?: number;
ref?: Ref;
streakInterval?: number;
};
declare const EchoButtonV2: ({ children, className, disabled, maxStreaks, onClick, ref, streakInterval, type, ...props }: EchoButtonV2Props) => import("react/jsx-runtime").JSX.Element;
export { EchoButtonV2, type EchoButtonV2Props };