import { BaseObject } from './baseObject';
export interface FieldPathElement extends BaseObject {
    field?: string;
    index?: number;
}
