13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import * as React from 'react';
|
|
|
|
import { StandardProps } from '../@types/common';
|
|
|
|
export interface FormGroupProps extends StandardProps {
|
|
/** Sets id for controlled component */
|
|
controlId?: string;
|
|
}
|
|
|
|
declare const FormGroup: React.ComponentType<FormGroupProps>;
|
|
|
|
export default FormGroup;
|