/**
 * Vite plugin that provides Node.js filesystem access during development
 * by injecting a polyfill into the SSR environment
 */
export declare function devFsVitePlugin({ verbose, configFile, }?: {
    verbose?: boolean;
    configFile?: string;
}): any;
export declare function devFsWrite(filename: string, data: string): Promise<void>;
