export type FileBucket = "runtime" | "interface" | "data_layer" | "security_sensitive" | "concurrency_state" | "tests" | "tooling_scripts" | "config_deployment" | "docs_specs" | "generated_vendor" | "unknown"; export interface BucketAssignment { path: string; buckets: FileBucket[]; rationale: string[]; } /** * Buckets files using the shared extractor heuristics so intake stays * consistent across OS-specific path separators and mixed-case manifests. */ export declare function bucketFile(path: string): BucketAssignment; //# sourceMappingURL=bucketing.d.ts.map