export interface KinoklubProgram {
    id: number;
    date: string;
    title: string;
    price: string;
    ticketUrl?: string;
    cinema: string;
    tags: string[];
    hour: string;
    isRunning: boolean;
}
export declare type KinoklubCinema = 'biooko' | 'aero' | 'svetozor';
export declare type Language = 'en' | 'cs';
