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