import { DateService } from "../../services/date-service";
export declare class DateStringConvertValueConverter {
    private dateService;
    constructor(dateService: DateService);
    toView(value: string, formatFrom: string, formatTo: string): string | null;
    fromView(value: string, formatFrom: string, formatTo: string): string | null;
}
