import CompCommon from '../../common/type'; import { CommonEvent } from '@tarojs/components/types/common'; declare type FormFunction = (event: CommonEvent) => void; export interface FormProps extends CompCommon { reportSubmit?: boolean; round?: boolean; border?: boolean; onSubmit?: FormFunction; onReset?: FormFunction; } export {};