export interface SearchResult {
  title: string;
  author: string;
  year: string;
  language: string;
  ext: string;
  md5: string;
}

export interface SearchOptions {
  maxResults?: number;
  topics?: string[];
  objects?: string[];
  columns?: string[];
  resultsPerPage?: number;
  fileStatus?: string;
  language?: string;
} 