import { Promisable } from 'type-fest'; import { z } from 'zod'; import { GetNodeListParams } from '../provider'; import { PossibleNodeConfigType } from '../types'; type AfterNodeListResponse = (nodeList: T[], customParams: GetNodeListParams) => Promisable; export declare const AfterNodeListResponseHookValidator: z.ZodType; type OnError = (error: Error) => Promisable; export declare const OnErrorHookValidator: z.ZodType; export {};