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