import { AbstractResponse } from '../../AbstractResponse';
import { MeData } from '../../data/MeData';
/**
 * Class that represents a response from a Get Me request.
 *
 * @author Tiago Grosso <tiagogrosso99@gmail.com>
 * @since 0.3.0
 */
export declare class GetMeResponse extends AbstractResponse<MeData> {
    /**
     * Gets the page id of the user that made the request.
     *
     * @returns the page id of the user that made the request.
     */
    getPageId(): string;
    /**
     * Gets the instagram page id of the user that made the request.
     *
     * @returns the intagram page id of the user that made the request.
     */
    getIgPageId(): string | undefined;
}
