import { ComponentPropsWithRef, FC, ReactNode } from 'react'; interface ButtonProps extends ComponentPropsWithRef<'button'> { /** The content of the button */ children: ReactNode; /** A color scheme to use for the button, defaults to `#006bb1` */ themeColor?: string; /** The style of the button, defaults to `primary` */ variant?: 'primary' | 'secondary'; /** The size of the button, defaults to `small` */ size?: 'small' | 'medium' | 'large'; /** Shape of the corners, defaults to `rounded` */ shape?: 'rounded' | 'squared'; } /** Primary UI component for user interaction */ export declare const Button: FC; export {};