UNPKG

@carrot-farm/mongsil-ui

Version:
10 lines (9 loc) 323 B
import * as React from 'react'; /** ===== type ===== */ interface FormProviderProps { children?: React.ReactNode; } /** ===== component ===== */ declare function FormProvider({ children }: FormProviderProps): JSX.Element; declare const _default: React.MemoExoticComponent<typeof FormProvider>; export default _default;