import { type ButtonHTMLAttributes, type Ref } from 'react';
export type FootprintButtonTrigger = 'click' | 'hover' | 'both';
export type FootprintButtonProps = ButtonHTMLAttributes & {
footprintTrigger?: FootprintButtonTrigger;
ref?: Ref;
};
export declare const FootprintButton: ({ children, className, disabled, footprintTrigger, onClick, onPointerLeave, onPointerMove, ref, type, ...buttonProps }: FootprintButtonProps) => import("react/jsx-runtime").JSX.Element;