interface UseDelayProps { delay?: number; callback?: () => void; } export declare function useDelay(props?: UseDelayProps): boolean; export {};