import { SolutionCode } from "./utils"; export type PrepareOptions = { enableTaskIds: boolean; }; export type PreparedCode = { readonly entry: string; readonly urls: Readonly>; }; /** * Prepare the solution for running (jest) tests * * @param code solution files * @param options options * * @returns entry point and blob urls */ export declare function prepare(code: SolutionCode, options?: PrepareOptions): PreparedCode; //# sourceMappingURL=prepare.d.ts.map