import { Suggestion } from '../../types/videoPlayer';
export declare class VideoSuggestions {
    handlePlaySuggestion: (id: string) => void;
    setSuggestions: (suggestions: Suggestion[]) => void;
    baseUrl: string;
    clientId: string;
    videoId: string;
    height: number;
    suggestions: Suggestion[];
    page: number;
    limit: number;
    totalData: number;
    componentWillLoad(): Promise<void>;
    handleSuggestions(): void;
    private formatDuration;
    private loadMoreSuggestions;
    render(): any;
}
