import { PromptTemplate } from "../../prompts/prompt.js"; export declare const DEFAULT_SQL_DATABASE_PROMPT: PromptTemplate<{ input: any; top_k: any; dialect: any; table_info: any; }, any>; export declare const SQL_POSTGRES_PROMPT: PromptTemplate<{ input: any; top_k: any; dialect: any; table_info: any; }, any>; export declare const SQL_SQLITE_PROMPT: PromptTemplate<{ input: any; top_k: any; dialect: any; table_info: any; }, any>; export declare const SQL_MYSQL_PROMPT: PromptTemplate<{ input: any; top_k: any; dialect: any; table_info: any; }, any>; export declare const SQL_MSSQL_PROMPT: PromptTemplate<{ input: any; top_k: any; dialect: any; table_info: any; }, any>; export declare const SQL_SAP_HANA_PROMPT: PromptTemplate<{ input: any; top_k: any; dialect: any; table_info: any; }, any>;