export declare function parseTitleAndYear(title: string): {
    title: string;
    year: string | null;
};
