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