import { Options, Result, UserMetaFromWebApi, PostMetaFromWebApi, HistoryItem, UserStories, UserReelsFeed } from './types'; export declare const user: (input: string, options?: Options | undefined) => Promise; export declare const hashtag: (input: string, options?: Options | undefined) => Promise; export declare const location: (input: string, options?: Options | undefined) => Promise; export declare const comments: (input: string, options?: Options | undefined) => Promise; export declare const likers: (input: string, options?: Options | undefined) => Promise; export declare const followers: (input: string, options?: Options | undefined) => Promise; export declare const following: (input: string, options?: Options | undefined) => Promise; export declare const getUserMeta: (input: string, options?: Options | undefined) => Promise; export declare const getPostMeta: (input: string, options?: Options | undefined) => Promise; export declare const getStories: (input: string, options?: Options | undefined) => Promise; export declare const getUserReels: (input: string, options?: Options | undefined) => Promise; export declare const history: (input: string, options?: Options | undefined) => Promise<{ message: string; table?: undefined; } | { table: HistoryItem[]; message?: undefined; }>; export declare const fromfile: (input: string, options: Options) => Promise<{ table: any[]; }>;