import { ButtonProps as ChakraButtonProps, ComponentWithAs as _, IconProps, ThemingProps } from '@chakra-ui/react'; import { ThemeButtonColorScheme } from '../theme/components/Button'; export interface ButtonProps extends ChakraButtonProps { /** * Specifies whether the button is full-width. * If so, set button width to 100%, height to auto and padding to 15px */ isFullWidth?: boolean; /** * Loading spinner font size. Defaults to `1.5rem`. */ spinnerFontSize?: IconProps['fontSize']; /** * Color scheme of button. */ colorScheme?: ThemingProps<'Button'>['colorScheme'] | ThemeButtonColorScheme; } export declare const Button: _<"button", ButtonProps>;