/** * Remove the surrounding block for a function, for instance * * `{ const foo = "bar" }` -> `const foo = "bar"` */ export declare function removeSurroundingBlock(code: string): string;