export declare class Converter {
    getContentType(): string;
    canRead(target: string, contentType: string): boolean;
    canWrite(target: any, contentType: string): boolean;
    doWrite(target: any): string;
    doRead(target: string): any;
}
