import type { AWSConfig, FetchOpts } from './types.js'; interface AWSAccount extends Pick { awsAccountId: string; title: string; color: string; description?: string; } export declare const putAWSAccount: (awsAccount: AWSAccount, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise; export {};