1 | import * as React from 'react';
|
2 | import { FormGroupProps } from './FormGroup';
|
3 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
4 | export interface FloatingLabelProps extends FormGroupProps, BsPrefixProps {
|
5 | controlId?: string;
|
6 | label: React.ReactNode;
|
7 | }
|
8 | declare const FloatingLabel: BsPrefixRefForwardingComponent<'div', FloatingLabelProps>;
|
9 | export default FloatingLabel;
|