import { Creative } from './creative';
import { DestinationUrlType } from './destinationUrlType';
export declare class HasDestinationUrlCreative extends Creative {
    protected static XSI_TYPE: string;
    destinationUrl: string;
    destinationUrlType: DestinationUrlType;
    constructor(destinationUrl?: string, destinationUrlType?: DestinationUrlType, advertiserId?: number, id?: number, name?: string, size?: any, previewUrl?: string, policyViolations?: any, appliedLabels?: any, lastModifiedDateTime?: any, customFieldValues?: any);
}
