import React, { FC, ReactNode } from 'react'; import { Props as BaseProps } from './base'; import { box } from '../../utility/box'; import { IconType } from '../IconProvider/IconType'; type Brightness = 'light' | 'dark'; export type Props = typeof box.props & BaseProps & { loading?: boolean; variant: Variant; backdropLuminosity?: Brightness; compact?: boolean; disabled?: boolean; icon?: IconType; children?: ReactNode; size?: 'large'; }; export declare const variants: readonly ["primary", "destructive", "secondary", "warning", "info", "plain", "upsell", "ghost"]; type Variant = typeof variants[number]; declare const Button: FC>; export default Button;