type CompileArg = { code: string; id: string; wasm?: boolean; }; declare const compileSync: ({ code, id, wasm }: CompileArg) => { code: string; css: string; } | undefined; export { compileSync };