-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreact-mantine.d.ts
29 lines (26 loc) · 1.11 KB
/
react-mantine.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 {
LfFieldReactMantineProps,
LfColumnsReactMantineProps,
LfColumnReactMantineProps,
LfTabsReactMantineProps,
LfTabReactMantineProps,
LfStepsReactMantineProps,
LfStepReactMantineProps,
LfGroupReactMantineProps,
LfArrayReactMantineProps,
LetsFormReactMantineProps,
LetsFormSchemaReactMantine
} from './definitions/react-mantine';
declare const LetsForm: FunctionComponent<LetsFormReactMantineProps>;
export default LetsForm;
export const LfField: FunctionComponent<LfFieldReactMantineProps>;
export const LfColumns: FunctionComponent<LfColumnsReactMantineProps>;
export const LfColumn: FunctionComponent<LfColumnReactMantineProps>;
export const LfTabs: FunctionComponent<LfTabsReactMantineProps>;
export const LfTab: FunctionComponent<LfTabReactMantineProps>;
export const LfSteps: FunctionComponent<LfStepsReactMantineProps>;
export const LfStep: FunctionComponent<LfStepReactMantineProps>;
export const LfGroup: FunctionComponent<LfGroupReactMantineProps>;
export const LfArray: FunctionComponent<LfArrayReactMantineProps>;
export { LetsFormSchemaReactMantine };