import { ExportableExtension, ExportableProfile, ExportableInstance, ExportableValueSet, ExportableCodeSystem, ExportableInvariant, ExportableConfiguration, ExportableMapping, ExportableAlias, ExportableResource, ExportableLogical } from '../exportable'; export declare class Package { readonly profiles: ExportableProfile[]; readonly extensions: ExportableExtension[]; readonly resources: ExportableResource[]; readonly logicals: ExportableLogical[]; readonly instances: ExportableInstance[]; readonly valueSets: ExportableValueSet[]; readonly codeSystems: ExportableCodeSystem[]; readonly invariants: ExportableInvariant[]; readonly mappings: ExportableMapping[]; readonly aliases: ExportableAlias[]; configuration: ExportableConfiguration; constructor(); add(resource: ExportableProfile | ExportableExtension | ExportableResource | ExportableLogical | ExportableInstance | ExportableValueSet | ExportableCodeSystem | ExportableInvariant | ExportableConfiguration | ExportableMapping | ExportableAlias): void; }