import React from "react";
export type ButtonProps = {
    type?: "primary" | "danger" | undefined;
    ghost?: boolean;
    children?: string;
    disabled?: boolean;
    loading?: boolean;
    onClick?: () => void;
};
export declare const Button: ({ type, ghost, children, disabled, loading, onClick }: ButtonProps) => React.JSX.Element;
