import React from 'react'; import CSS from 'csstype'; import { Gradient } from '../../@types'; import '../../index.css'; export interface ButtonProps { children: React.ReactNode; asGradient?: boolean; gradient?: Gradient; borderColor?: string; onClick?: () => void; style?: CSS.Properties; backgroundColor?: string; color?: string; size?: 'sm' | 'md' | 'lg'; height?: string | null; width?: string | null; fullWidth?: boolean; ghost?: boolean; className?: string; } /** * - You must pass in children to the Button component, as the text you're intending to display * - Works best with raw text but any text element as a child will work */ export declare const Button: React.FC;