import { LinkablePostPublished } from '../types';
declare function createSingleVideoHandler({ video_path, thumbnail_path, caption, is_reel, location, verbose, }: {
    video_path: string;
    thumbnail_path: string;
    caption: string;
    is_reel: boolean;
    location?: string;
    verbose: boolean;
}): Promise<LinkablePostPublished>;
export default createSingleVideoHandler;
