import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ConformancePackInputParameter { ParameterValue: Value; ParameterName: Value; constructor(properties: ConformancePackInputParameter); } export declare class TemplateSSMDocumentDetails { DocumentVersion?: Value; DocumentName?: Value; constructor(properties: TemplateSSMDocumentDetails); } export interface ConformancePackProperties { ConformancePackInputParameters?: List; TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails; DeliveryS3Bucket?: Value; ConformancePackName: Value; DeliveryS3KeyPrefix?: Value; TemplateBody?: Value; TemplateS3Uri?: Value; } export default class ConformancePack extends ResourceBase { static ConformancePackInputParameter: typeof ConformancePackInputParameter; static TemplateSSMDocumentDetails: typeof TemplateSSMDocumentDetails; constructor(properties: ConformancePackProperties); }