export interface BoundedClauseRange { readonly start: number; readonly end: number; } /** Return deterministic punctuation, newline, and conjunction-bounded clauses. */ export declare function boundedClauseRanges(text: string): BoundedClauseRange[];