import { ClassComponent, GlobalComponentConstructor, Nullable } from '../ts-helpers'; export interface TriStateCheckboxProps { /** * Value of the component. */ modelValue?: Nullable; /** * Inline style of the component. */ style?: any; /** * Style class of the component. */ class?: any; } export interface TriStateCheckboxSlots { } export declare type TriStateCheckboxEmits = { /** * Emitted when the value changes. * @param {boolean|null|undefined} value - New value. */ 'update:modelValue': (value: Nullable) => void; } declare class TriStateCheckbox extends ClassComponent { } declare module '@vue/runtime-core' { interface GlobalComponents { TriStateCheckbox: GlobalComponentConstructor } } /** * * TriStateCheckbox is used to select either 'true', 'false' or 'null' as the value. * * Demos: * * - [TriStateCheckbox](https://www.primefaces.org/primevue-nuxt/showcase/#/tristatecheckbox) * */ export default TriStateCheckbox;