import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface PreparedStatementProperties { StatementName: Value; WorkGroup: Value; Description?: Value; QueryStatement: Value; } export default class PreparedStatement extends ResourceBase { constructor(properties: PreparedStatementProperties); }