// SPDX-License-Identifier: Apache-2.0 /** * Strip directives from a piece of code. * * @param code The code to strip directives from. * @return The stripped code. */ export function stripDirectives(code: string): string;