import { OnInit } from '@angular/core'; import { MatDialog, MatSnackBar } from '@angular/material'; import { NgxSpinnerService } from 'ngx-spinner'; import { IUser } from '../models/vk-users.model'; import { VkUsersService } from './../services/vk-users.service'; export declare class VkUsersComponent implements OnInit { private usersService; private snackBar; private spinner; dialog: MatDialog; apiBaseUrl?: string; accessToken?: string; error: any; loadingUsers: boolean; users: any; _users: any; displayedColumns: any; constructor(usersService: VkUsersService, snackBar: MatSnackBar, spinner: NgxSpinnerService, dialog: MatDialog); ngOnInit(): void; getAllUsersResponseHandler(response: any): void; getAllUsersResponseHandlerError(): void; private showErrorMessage; getDate(date: string): string; openDialog(element?: IUser): void; onCreate(): void; onEdit(element: IUser): void; onView(element: IUser): void; onSearch(event: any): void; onRefresh(): void; }