import { RawEpisode } from './raw-episode';
export declare class Episode {
    id: number;
    name: string;
    air_date: string;
    episode: string;
    characters: number[];
    url: string;
    created: Date;
    static fromJson({ characters, created, ...common }: RawEpisode): Episode;
}
