export type AWSOptions = {
    accessKeyId: string;
    region?: string;
    secretAccessKey: string;
    service?: string;
    sessionToken?: string;
};
export type FetchHeaders = Record<string, string>;
export type FetchOptions = {
    headers?: FetchHeaders;
    signal?: AbortSignal;
} & Omit<RequestInit, 'headers' | 'signal'>;
