import React from "react";
export interface TrialButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
    /**
     * The text to display inside the button.
     */
    children: React.ReactNode;
    /**
     * The color used for the animated trail / border gradient.
     * Example: "#4f46e5" or "blue"
     */
    trailColor?: string;
    /**
     * The color used for the inner blur/glow animation.
     * Example: "#60a5fa" or "aqua"
     */
    blurColor?: string;
}
/**
 * A reusable button component with a shiny, animated gradient effect.
 * Supports dynamic trail and blur colors.
 */
export declare const TrialButton: React.FC<TrialButtonProps>;
