import { RelationalJson } from './models/relational-json'; import { IConversionStrategy } from './models/conversion-strategy'; /** Provides functionality for converting JSON to a RelationalJson object which can then be used to output to CSV or markdown etc. * @export * @class Converter */ export declare class Converter { /** Takes in json object and IConversionStrategy for manipulating the data and output * and converts it into a RelationalJson object. * @memberof Converter */ convertJson: (jsonInput: any, conversionStrategy?: IConversionStrategy | undefined) => RelationalJson; private iterateKeys; }