export type PathName = (string | number)[]; export type SchemaItemFieldProps = { key: string; index?: number; fieldId?: string; prefixName: (string | number)[]; }; type FieldInfoType = { fieldName: PathName; path: string; name: PathName; schemaId: string; index: number | undefined; }; export declare function getFieldPathInfo({ key, index, prefixName }: SchemaItemFieldProps): FieldInfoType; export {};