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