1 | import { BsPrefixRefForwardingComponent } from './helpers';
|
2 | import { UsePlaceholderProps } from './usePlaceholder';
|
3 | import { ButtonVariant } from './types';
|
4 | export interface PlaceholderButtonProps extends UsePlaceholderProps {
|
5 | variant?: ButtonVariant;
|
6 | }
|
7 | declare const PlaceholderButton: BsPrefixRefForwardingComponent<'button', PlaceholderButtonProps>;
|
8 | export default PlaceholderButton;
|