import { UseDebounceProps } from "../../../hooks/index.js"; /** * * @kind 09-Performance */ export declare const useDebounceState: (initialValue: T, props?: UseDebounceProps) => readonly [T, (newValue: Parameters>>[0]) => void];