import { TiktokPlaylistResponse } from "../../types/get/getPlaylist";
export declare const getPlaylist: (playlistId: string, proxy?: string, page?: number, count?: number) => Promise<TiktokPlaylistResponse>;
export declare const Playlist: (url: string, options?: {
    page?: number;
    proxy?: string;
    count?: number;
}) => Promise<TiktokPlaylistResponse>;
export declare const extractPlaylistId: (input: string) => string | null;
