import { Repository } from '../core/repository'; import { HighlightsRepositoryCreateReelResponseRootObject, HighlightsRepositoryEditReelResponseRootObject, HighlightsRepositoryHighlightsTrayResponseRootObject, StatusResponse } from '../responses'; import { CreateHighlightsReelOptions, EditHighlightsReelOptions } from '../types'; export declare class HighlightsRepository extends Repository { highlightsTray(userId: string | number): Promise; createReel(options: CreateHighlightsReelOptions): Promise; editReel(options: EditHighlightsReelOptions): Promise; deleteReel(highlightId: string): Promise; }