import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class SidewalkAccountInfo { AppServerPrivateKey: Value; constructor(properties: SidewalkAccountInfo); } export declare class SidewalkAccountInfoWithFingerprint { Fingerprint?: Value; AmazonId?: Value; Arn?: Value; constructor(properties: SidewalkAccountInfoWithFingerprint); } export declare class SidewalkUpdateAccount { AppServerPrivateKey?: Value; constructor(properties: SidewalkUpdateAccount); } export interface PartnerAccountProperties { PartnerType?: Value; SidewalkResponse?: SidewalkAccountInfoWithFingerprint; AccountLinked?: Value; Sidewalk?: SidewalkAccountInfo; PartnerAccountId?: Value; SidewalkUpdate?: SidewalkUpdateAccount; Tags?: List; } export default class PartnerAccount extends ResourceBase { static SidewalkAccountInfo: typeof SidewalkAccountInfo; static SidewalkAccountInfoWithFingerprint: typeof SidewalkAccountInfoWithFingerprint; static SidewalkUpdateAccount: typeof SidewalkUpdateAccount; constructor(properties?: PartnerAccountProperties); }