import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class RobotSoftwareSuite { Version: Value; Name: Value; constructor(properties: RobotSoftwareSuite); } export declare class SourceConfig { S3Bucket: Value; Architecture: Value; S3Key: Value; constructor(properties: SourceConfig); } export interface RobotApplicationProperties { CurrentRevisionId?: Value; RobotSoftwareSuite: RobotSoftwareSuite; Sources: List; Tags?: { [key: string]: any; }; Name?: Value; } export default class RobotApplication extends ResourceBase { static RobotSoftwareSuite: typeof RobotSoftwareSuite; static SourceConfig: typeof SourceConfig; constructor(properties: RobotApplicationProperties); }