/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * @example
 *     {
 *         phrase: "Getting started",
 *         state: "published"
 *     }
 */
export interface SearchArticlesRequest {
    /**
     * The phrase within your articles to search for.
     */
    phrase?: string;
    /**
     * The state of the Articles returned. One of `published`, `draft` or `all`.
     */
    state?: string;
    /**
     * The ID of the Help Center to search in.
     */
    help_center_id?: number;
    /**
     * Return a highlighted version of the matching content within your articles. Refer to the response schema for more details.
     */
    highlight?: boolean;
}
