import React from 'react'; export type ButtonVariants = 'primary' | 'primary-outline' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'link-button'; type ButtonSize = 'sm' | 'lg' | 'xl'; type PickedButtonProps = 'ref' | 'key' | 'className' | 'disabled' | 'onClick' | 'title'; interface ButtonProps extends Pick, PickedButtonProps> { variant: ButtonVariants; size?: ButtonSize; } declare const Button: React.FC; export default Button; //# sourceMappingURL=Button.d.ts.map