/**
 * Content library types and interfaces for the Digital Samba API
 *
 * @module types/content
 */
export interface Library {
    id: string;
    external_id?: string;
    name: string;
    created_at: string;
}
export interface LibraryFolder {
    id: string;
    external_id?: string;
    description?: string;
    created_at: string;
}
export interface LibraryFile {
    id: string;
    folder_id?: string;
    name: string;
    type: string;
    size: number;
    created_at: string;
}
//# sourceMappingURL=content.d.ts.map