/**
 * Checks Lao words for basic grammatical structure violations.
 *
 * @param words - An array of Lao words (presumably segmented).
 * @returns An array of words that violate the defined grammar rules.
 */
export declare function laoGrammarCheck(words: string[]): string[];
