export declare type resizeToProps = { size: { width: number; height: number; }; destination_config: { path: string; suffix: string; }; }; export interface BaseGetMediaProps { user_id: string; /** * Refer to https://developers.facebook.com/docs/instagram for more information on supported fields */ fields: string[]; limit: number | string; access_token: string; after: number | string; include_thumbnail: resizeToProps; resize_to?: resizeToProps[]; } export declare function internalGetMediaForUser(baseApiUrl: string, { user_id, fields, limit, access_token, after, resize_to, include_thumbnail, }: BaseGetMediaProps): Promise;