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