import Exception from './Exception';
export default class ConvertPropertyTypeError extends Exception {
    reason: Exception;
    constructor(proeprty: string, reason: Exception);
}
