import type { ITableDTO } from '../../../table/actions/dto/dto.js'; import type { AWSConfig, FetchOpts } from './types.js'; interface Table extends AWSConfig, ITableDTO { awsAccountId: string; awsRegion: string; icon: string; title?: string; description?: string; } export declare const putTable: (table: Table, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise; export {};