import { Builder, Select } from "./builder"; import { Bool, Cmp, Fn } from "./expr"; export { Parts } from "./builder"; export { Field, Scalar } from "./expr"; export declare type Bool = Bool; export declare type Builder = Builder; export declare type Cmp = Cmp; export declare type Fn = Fn; export declare type Select = Select; export declare const and: typeof Bool.and, or: typeof Bool.or; export declare const isBuilder: typeof Builder.isBuilder; export declare const from: typeof Select.from, isSelect: typeof Select.isSelect; export declare const cmp: typeof Cmp; export declare const fn: typeof Fn; export default function soql(select: string | Select): Builder;