import { HTMLAttributes } from 'react';
import { ButtonProps } from '../Button';
export interface MagneticButtonProps extends ButtonProps {
/**
* @name Freedom
* @description How much attracted the background will be to your cursor
* @default 1
*/
freedom?: number;
magnet?: HTMLAttributes;
}
/**
* @name Magnetic Button
*
* @description A button attracted by your cursor.
*
* @example ```
* Content
* ```
*/
export declare const MagneticButton: (props: MagneticButtonProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=MagneticButton.d.ts.map