import { Creative } from './creative';
import { DestinationUrlType } from './destinationUrlType';
export interface HasDestinationUrlCreative extends Creative {
    destinationUrl?: string;
    destinationUrlType?: DestinationUrlType;
}
