export type { Source, Manifest, ManifestOptions } from '@cmdoss/cryptoguard-manifest-core'; export { MANIFEST_VERSION } from '@cmdoss/cryptoguard-manifest-core'; import type { ManifestOptions } from '@cmdoss/cryptoguard-manifest-core'; /** * Astro configuration (subset relevant for manifest generation) */ export interface AstroConfig { base?: string; outDir?: string; build?: { client?: string; server?: string; }; } /** * Integration options for the Astro plugin */ export interface IntegrationOptions extends ManifestOptions { projectRoot?: string; verbose?: boolean; disabled?: boolean; } //# sourceMappingURL=types.d.ts.map