import * as React from 'react'; import type { NamePath, ValidatorRule } from './interface'; export interface ParentFieldProps { name: NamePath; rules?: ValidatorRule[]; validateTrigger?: string | string[] | false; initialValue?: any[]; children?: React.ReactNode; } declare const List: React.FunctionComponent; export default List;