UNPKG

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