import { type HelixPackageEnvelope } from '@hypersoniclabs/helix-manifest'; import { type AbilityValidator } from './ability'; import type { BundleFile } from './bundle'; export type PackageBundleCheck = { kind: string | null; envelope: HelixPackageEnvelope | null; payload: Record | null; files: BundleFile[]; errors: string[]; }; export declare function checkPackageBundle(root: string, validator: AbilityValidator): PackageBundleCheck;