export function cf2(obj: any): Promise<{ auth: string; headers: {}; domain: any; zid: any; getZoneId: typeof getZoneId; dnsObj: typeof dnsObj; find: typeof find; add: typeof add; del: typeof del; set: typeof set; madd: typeof madd; mdel: typeof mdel; mset: typeof mset; security: typeof security; }>; declare function getZoneId(): Promise; declare function dnsObj(dnsParam: any, option?: any): any; declare function find(filter: any): Promise; declare function add(str: string | any[] | any): Promise<0 | 1>; declare function del(filter: any): Promise; declare function set(filter: any, json: any): Promise; declare function madd(arr: any): Promise; declare function mdel(arr: any): Promise; declare function mset(arr: any): Promise; declare function security(options?: {}): Promise; export {};