import * as cog from '../cog'; import * as cloudwatch from '../cloudwatch'; export declare class SQLExpressionBuilder implements cog.Builder { protected readonly internal: cloudwatch.SQLExpression; constructor(); /** * Builds the object. */ build(): cloudwatch.SQLExpression; select(select: cog.Builder): this; from(from: cog.Builder | cog.Builder): this; where(where: cog.Builder): this; groupBy(groupBy: cog.Builder): this; orderBy(orderBy: cog.Builder): this; orderByDirection(orderByDirection: string): this; limit(limit: number): this; }