import { ApiError } from './apiError';
import { CreativeSetErrorReason } from './creativeSetErrorReason';
export interface CreativeSetError extends ApiError {
    reason?: CreativeSetErrorReason;
}
