import { Module } from '@becomes/purple-cheetah/types'; import type { CloudFlareDnsRecord } from './models'; export declare class CloudFlare { static dns: { record: { findByName(name: string): Promise; create(data: { name: string; value: string; }): Promise; update(data: { oldName: string; newName: string; value: string; }): Promise; remove(data: { name: string; }): Promise; }; }; } export declare function createCloudFlare(): Module;