import { AuthCapability } from "../../config/schemas/types"; import { PlannedFile } from "../../io/file-writer"; export interface AddSocketPlan { name: string; feature: string; auth: "none" | AuthCapability; featuresRoot: string; } export declare function createSocketFiles(root: string, plan: AddSocketPlan): Promise;