UNPKG

414 BTypeScriptView Raw
1import * as React from 'react';
2import { AsProp, BsPrefixRefForwardingComponent } from './helpers';
3export declare type FeedbackType = 'valid' | 'invalid';
4export interface FeedbackProps extends AsProp, React.HTMLAttributes<HTMLElement> {
5 bsPrefix?: never;
6 type?: FeedbackType;
7 tooltip?: boolean;
8}
9declare const Feedback: BsPrefixRefForwardingComponent<'div', FeedbackProps>;
10export default Feedback;