export interface FindCloudflareD1ByNameOptions { accountId: string; apiToken: string; name: string; fetch?: typeof fetch; apiBase?: string; } export interface CloudflareD1Identity { databaseId: string; databaseName: string; accountId: string; } export declare function findCloudflareD1ByName(options: FindCloudflareD1ByNameOptions): Promise;