import { Path } from "../../parent/pathTypes";
import { ActionCallArgumentSerializer } from "./core";
interface ObjectPath {
    targetPath: Path;
    targetPathIds: (string | null)[];
}
export declare const objectPathSerializer: ActionCallArgumentSerializer<object, ObjectPath>;
export {};
