import { type _InstanceType, type ArchitectureType } from '@aws-sdk/client-ec2';
export type Ec2InstanceInfo = {
    vCpu?: number;
    memoryGiB?: number;
    architectures?: ArchitectureType[];
};
export declare const ec2Info: Record<_InstanceType | string, Ec2InstanceInfo>;
