import { IWhereComponent } from '../where-component'; import { Column } from '../../column'; import { WhereValue } from '../where-value'; export declare class StartsWith implements IWhereComponent { readonly Column: Column; readonly Value: WhereValue; constructor(column: Column, value: WhereValue); toString(): string; }