/// export interface IInstanceInformationProps { account: string; availabilityZone: string; instanceType: string; capacityType?: string; launchTime: number; provider: string; region: string; serverGroup: string; showInstanceType?: boolean; } export declare const InstanceInformation: ({ account, availabilityZone, instanceType, capacityType, launchTime, provider, region, serverGroup, showInstanceType, }: IInstanceInformationProps) => JSX.Element;