import { WSEvents } from 'guilded-api-typings';
import { Client } from '../../structures/Client';
/**
 * Handle the ListItemCreated event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function created(client: Client, data: WSEvents['ListItemCreated']): Promise<void>;
/**
 * Handle the ListItemUpdated event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function updated(client: Client, data: WSEvents['ListItemUpdated']): Promise<void>;
/**
 * Handle the ListItemDeleted event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function deleted(client: Client, data: WSEvents['ListItemDeleted']): Promise<void>;
/**
 * Handle the ListItemCompleted event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function completed(client: Client, data: WSEvents['ListItemCompleted']): Promise<void>;
/**
 * Handle the ListItemUncompleted event.
 * @param client The client the Websocket belongs to.
 * @param data The data of the event.
 */
export declare function uncompleted(client: Client, data: WSEvents['ListItemUncompleted']): Promise<void>;
//# sourceMappingURL=listItem.d.ts.map