import { Resource, FedaPayObject } from '.'; /** * Class Event * * @property int $id * @property string $type * @property string $entity * @property int $object_id * @property int $account_id * @property string $object * @property string $created_at * @property string $updated_at */ export declare class Event extends Resource { protected static ressourceName: string; /** * @param {string|number} id The event id * @param {Object|null} params * @param {Object|null} headers * @returns {Promise} */ static retrieve(id: string | number, params?: {}, headers?: {}): Promise; /** * @param {Object|null} params * @param {Object|null} headers * * @returns {Promise} */ static all(params?: {}, headers?: {}): Promise; /** * Subscribe to events flow * @param {Object} params * @param {Object} headers * * @returns {Promise} */ static subscribe(params?: {}, headers?: {}): Promise; }