import type { AWSConfig, FetchOpts } from './types.js';
export declare const deleteEntity: ({ awsAccountId, awsRegion, tableName, entityName }: AWSConfig & {
    tableName: string;
    entityName: string;
}, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise<void>;
