import * as types from '../types'; export declare const verifications: { create(data: types.RequestVerificationsCreate): [number, types.ResponseVerificationsCreate | types.SDKError]; get(data: types.RequestVerificationsGet): types.PaginatedResponse; cancel({ id, }: { id: string; }): [number, types.ResponseVerificationsCancel | types.SDKError]; getOne({ id, }: { id: string; }): [number, types.ResponseVerificationsGetOne | types.SDKError]; getReport({ id, }: { id: string; }): [number, types.ResponseReportGet | types.SDKError]; }; export declare const companies: { get(data: types.RequestCompaniesGet): types.PaginatedResponse; }; export declare const credentials: { createSession(): (number | { token: string; })[]; };