export interface ValidateTextOptions {
    /**
     * Generate suggestions where there are spelling issues.
     */
    generateSuggestions?: boolean;
    /**
     * The number of suggestions to generate. The higher the number the longer it takes.
     */
    numSuggestions?: number;
    /**
     * Verify that the in-document directives are correct.
     */
    validateDirectives?: boolean;
    /**
     * Skips spell checking the document. Useful for testing and dry runs.
     * It will read the configuration and parse the document.
     */
    skipValidation?: boolean;
}
//# sourceMappingURL=ValidateTextOptions.d.ts.map