UNPKG

370 BTypeScriptView Raw
1import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
2export interface FeedbackProps extends BsPrefixProps {
3 className?: string;
4 bsPrefix?: never;
5 type?: 'valid' | 'invalid';
6 tooltip?: boolean;
7}
8declare type Feedback = BsPrefixRefForwardingComponent<'div', FeedbackProps>;
9declare const Feedback: Feedback;
10export default Feedback;