/// export declare function compile(code: string, path: string): string; export declare function compileTableSql(code: string, path: string): string; export declare function compileOperationSql(code: string, path: string): string; export declare function compileAssertionSql(code: string, path: string): string; export declare function extractJsBlocks(code: string): { sql: string; js: string; }; export declare function getFunctionPropertyNames(prototype: any): string[];