import React from 'react';

interface ButtonProps {
    children: React.ReactNode;
    onClick?: () => void;
    variant?: 'primary' | 'secondary';
    disabled?: boolean;
}
declare const Button: React.FC<ButtonProps>;

export { Button, type ButtonProps };
