import { Transformation } from "../../types/transformation.type"; import { YamlConfig } from "../config"; export interface PushProps { path: string; value: unknown; } export declare class PushTransform implements Transformation { private readonly props; private readonly config; constructor(props: PushProps, config: YamlConfig); transform(stringData: string): string; }