import { BindableParams, Bindable } from '@zag-js/core'; declare function bindable(props: () => BindableParams): Bindable; declare namespace bindable { var cleanup: (_fn: VoidFunction) => void; var ref: (defaultValue: T) => { get: () => T; set: (next: T) => void; }; } export { bindable };