import React from 'react'; interface StaticInputOptions { warn?: boolean; name?: string; } export declare const useStaticInput: (staticValue: T, { warn, name }?: StaticInputOptions) => [T, React.Dispatch>]; export {};