import type { TODO_any } from '../organization/TODO_any'; /** * Creates a debounced function that runs after calls have been quiet for the given delay. * * @public exported from `@promptbook/utils` */ export declare function debounce void>(fn: T, delay: number): ((...args: Parameters) => void) & { cancel: () => void; };