type ConditionalCallback any> = T | undefined; /** * Custom hook to create a conditional callback. * * @param callback - The function to invoke if conditions are met. * @param conditions - A single boolean or array of booleans; the callback is invoked only if all are true. * @returns A memoized callback that only calls `callback` if all conditions are true. */ export declare const useConditionalCallback: any>(callback: ConditionalCallback, conditions: boolean | boolean[]) => (...args: Parameters) => void; export {};