import React from "react"; import { ButtonVariants } from "./styles"; declare type BaseProps = { disabled?: boolean; link?: boolean; type?: "button" | "submit"; loading?: boolean; children: string | JSX.Element | JSX.Element[]; onClick?: (e: React.MouseEvent) => void; }; declare type ButtonProps = BaseProps & { variant: ButtonVariants; }; export declare function Button(props: ButtonProps): JSX.Element; export declare function GhostButton(props: BaseProps): JSX.Element; export {};