1 | import { ButtonProps as BaseButtonProps } from '@restart/ui/Button';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | import { ButtonVariant } from './types';
|
4 | export interface ButtonProps extends BaseButtonProps, Omit<BsPrefixProps, 'as'> {
|
5 | active?: boolean;
|
6 | variant?: ButtonVariant;
|
7 | size?: 'sm' | 'lg';
|
8 | }
|
9 | export type CommonButtonProps = 'href' | 'size' | 'variant' | 'disabled';
|
10 | declare const Button: BsPrefixRefForwardingComponent<'button', ButtonProps>;
|
11 | export default Button;
|