import { BaseEntity } from 'typeorm';
import { Word } from './word';
export declare class Audio extends BaseEntity {
    id: number;
    fileId: string;
    fileUid: string;
    quote: string;
    actor: string;
    location: string;
    addedAt: Date;
    nUses: number;
    words: Word[];
}
