import type { IPurgeType, IPurgeMethod } from './type';
export declare function createPurgeTask({ secretId, secretKey, targets, zoneId, method, type, }: {
secretId: string;
secretKey: string;
targets: string[];
zoneId: string;
method?: IPurgeMethod;
type?: IPurgeType;
}): Promise<any>;