import * as postcss from 'postcss'; import type { EsifyCSSResult } from '../postcssPlugin/types'; export interface RunCodeResult extends EsifyCSSResult { root: postcss.Root; } export declare const runCode: (file: string) => Promise;