import type { Configuration } from "@biomejs/wasm-nodejs";
export type FormatOptions = Readonly<Configuration>;
export type FormatType = "typescript" | "json";
export declare function formatCodeAsync(code: string, formatType: FormatType, configuration: FormatOptions | undefined): Promise<string>;
