import type { AWSConfig, FetchOpts } from './types.js'; export interface AccessRole { roleName: string; description?: string; } export declare const putAccessRole: (accessRole: Pick & AccessRole, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise; export declare const assignAccessRole: ({ awsAccountId, awsRegion, tableName, roleName }: AWSConfig & { tableName: string; roleName: string; }, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise;