import { FromClauseNode } from "../ast/from.js"; import { SampleClauseNode } from "../ast/sample.js"; import { TableRefNode } from "../ast/table-ref.js"; /** * Create a new table FROM reference, applicable in a query or join. * @param table The table. * @param alias An optional table alias. * @param sample An optional table sample to apply. */ export declare function from(table: string | string[] | TableRefNode, alias?: string, sample?: SampleClauseNode): FromClauseNode; //# sourceMappingURL=from.d.ts.map