import type { TestCallback } from '../../../@types/poku.js'; import { onlyIt, skip, todo } from '../modifiers.js'; export declare const getTitle: (input: unknown) => string | undefined; export declare const getCallback: (input: unknown) => TestCallback | undefined; export declare const itBase: (titleOrCb: string | TestCallback, callback?: TestCallback) => Promise; declare function itCore(title: string, cb: (params?: Record) => Promise): Promise; declare function itCore(title: string, cb: (params?: Record) => unknown): void; declare function itCore(cb: (params?: Record) => Promise): Promise; declare function itCore(cb: (params?: Record) => unknown): void; export declare const it: typeof itCore & { todo: typeof todo; skip: typeof skip; only: typeof onlyIt; }; export {};