import { ApiError } from './apiError';
import { StringLengthErrorReason } from './stringLengthErrorReason';
export interface StringLengthError extends ApiError {
    reason?: StringLengthErrorReason;
}
