/** * Get Field Paths * @module @revealui/core/fields/getFieldPaths */ import type { Field } from './config/types.js'; interface GetFieldPathsArgs { field: Field; path?: string; parentPath?: string; parentIsLocalized?: boolean; } interface FieldPathInfo { path: string; schemaPath: string; } /** * Gets the path information for a field, handling nested structures */ export declare function getFieldPaths({ field, path, parentPath, parentIsLocalized, }: GetFieldPathsArgs): FieldPathInfo; /** * Modified version for compatibility */ export declare function getFieldPathsModified(args: GetFieldPathsArgs): FieldPathInfo; export default getFieldPaths; //# sourceMappingURL=getFieldPaths.d.ts.map