export interface CludoNewsSearchProps {
    /**
     * The optional search term
     */
    searchTerm?: string;
    /**
     * The cludo customer Id
     */
    customerId: number;
    /**
     * The cludo engine Id
     */
    engineId: number;
    /**
     * Optional first article date to work out the start year
     */
    firstArticleDate?: string;
}
