import { BaseGetMediaProps } from '../base-get-media'; /** * @deprecated * Prefer using `GetMediaProps` instead */ export declare type getMediaProps = BaseGetMediaProps; export declare type GetMediaProps = BaseGetMediaProps; /** * * @param props GetMediaProps * @returns Media for current user * Calling this endpoint does not require any special permission but * an access token of an instagram app user * * This endpoint can only be used for reading user node that the token was generated for * To get media other users, please use `getMediaForUser` from `graph-api` module */ export declare function getMediaForUser(props: GetMediaProps): Promise;