import { CSFDFilmTypes, CSFDScreening, CSFDStars } from './global';
export interface CSFDUserRatings extends CSFDScreening {
    userRating: CSFDStars;
    userDate: string;
}
export interface CSFDUserRatingConfig {
    includesOnly?: CSFDFilmTypes[];
    excludes?: CSFDFilmTypes[];
    /**
     * Fetch all ratings. (Warning: Use it wisely. Can be detected and banned. Consider using it together with `allPagesDelay` attribute)
     */
    allPages?: boolean;
    /**
     * Delay on each page request. In milliseconds
     */
    allPagesDelay?: number;
}
export type Colors = 'lightgrey' | 'blue' | 'red' | 'grey';
