import { ApiError } from './apiError';
import { RegExErrorReason } from './regExErrorReason';
export interface RegExError extends ApiError {
    reason?: RegExErrorReason;
}
