import { VNodeDirective } from 'vue'; interface DirectiveBinding extends Readonly { readonly modifiers: { [key: string]: boolean; }; } export declare const thousand: { inserted: (el: HTMLInputElement, binding: DirectiveBinding) => void; componentUpdated(el: HTMLInputElement, binding: DirectiveBinding, vnode: any): void; }; export {};