type Params = { sql: string; table: string; data: any | any[]; }; export default function ({ sql: passedSql, table, data }: Params): Promise; export {};