import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class TagsEntry { Value: Value; Key: Value; constructor(properties: TagsEntry); } export interface StateMachineProperties { DefinitionString: Value; StateMachineName?: Value; RoleArn: Value; Tags?: List; } export default class StateMachine extends ResourceBase { static TagsEntry: typeof TagsEntry; constructor(properties: StateMachineProperties); }