import { ApiError } from './apiError';
import { CustomCreativeErrorReason } from './customCreativeErrorReason';
export interface CustomCreativeError extends ApiError {
    reason?: CustomCreativeErrorReason;
}
