import { TiktokAPIResponse, TiktokCollectionResponse } from "../../types/downloader/tiktokApi";
export declare const extractCollectionId: (input: string) => string | null;
export declare const TiktokAPI: (url: string, proxy?: string, showOriginalResponse?: boolean) => Promise<TiktokAPIResponse>;
export declare const Collection: (collectionIdOrUrl: string, options?: {
    cursor?: string;
    proxy?: string;
}) => Promise<TiktokCollectionResponse>;
