import * as React from "react"; import type { HTMLMotionProps } from "motion/react"; interface AnimatedSubscribeButtonProps extends HTMLMotionProps<"button"> { children: React.ReactNode; className?: string; variant?: "default" | "primary" | "secondary" | "success" | "warning" | "error"; size?: "sm" | "md" | "lg"; action?: "subscribe" | "follow" | "like" | "bookmark" | "download"; onAction?: (action: string) => void; } export declare const AnimatedSubscribeButton: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=animated-subscribe-button.d.ts.map