import VK from '..'; export interface AccountGetProfileInfoResponse { first_name: string; last_name: string; id: number; } declare const accountGetProfileInfo: (vk: VK) => Promise; export default accountGetProfileInfo;