-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreact-bootstrap.d.ts
29 lines (26 loc) · 1.16 KB
/
react-bootstrap.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { FunctionComponent } from 'react';
import {
LfFieldReactBootstrapProps,
LfColumnsReactBootstrapProps,
LfColumnReactBootstrapProps,
LfTabsReactBootstrapProps,
LfTabReactBootstrapProps,
LfStepsReactBootstrapProps,
LfStepReactBootstrapProps,
LfGroupReactBootstrapProps,
LfArrayReactBootstrapProps,
LetsFormReactBootstrapProps,
LetsFormSchemaReactBootstrap
} from './definitions/react-bootstrap';
declare const LetsForm: FunctionComponent<LetsFormReactBootstrapProps>;
export default LetsForm;
export const LfField: FunctionComponent<LfFieldReactBootstrapProps>;
export const LfColumns: FunctionComponent<LfColumnsReactBootstrapProps>;
export const LfColumn: FunctionComponent<LfColumnReactBootstrapProps>;
export const LfTabs: FunctionComponent<LfTabsReactBootstrapProps>;
export const LfTab: FunctionComponent<LfTabReactBootstrapProps>;
export const LfSteps: FunctionComponent<LfStepsReactBootstrapProps>;
export const LfStep: FunctionComponent<LfStepReactBootstrapProps>;
export const LfGroup: FunctionComponent<LfGroupReactBootstrapProps>;
export const LfArray: FunctionComponent<LfArrayReactBootstrapProps>;
export { LetsFormSchemaReactBootstrap };