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