interface TransformOptions {
    startLine?: number | null;
    endLine?: number | null;
}
export declare function transformFile(filePath: string, options?: TransformOptions): Promise<string>;
export declare function transformLine(line: string): string;
export {};
