import { ApiError } from './apiError';
import { StringFormatErrorReason } from './stringFormatErrorReason';
export interface StringFormatError extends ApiError {
    reason?: StringFormatErrorReason;
}
