import type { BooleanRendererOptions, BuiltInRendererDefinition, CheckboxRendererOptions } from '../../types/built-in-renderer.types'; /** * Boolean as text — `Yes` / `No`. * * The explicit opt-out from the interactive checkbox a `type: 'boolean'` column * gets by default. Matches the strings `formatValue` produces, so a column * using this renderer reads the same on screen, in an export and on the * clipboard. */ export declare const booleanRenderer: BuiltInRendererDefinition; /** * Interactive checkbox — the default for `type: 'boolean'` columns. * * Editable and unlocked columns get a live control that commits through the * grid's normal edit pipeline; everything else gets a disabled one that still * shows the value. */ export declare const checkboxRenderer: BuiltInRendererDefinition; /** The same control as {@link checkboxRenderer}, styled as a sliding switch. */ export declare const switchRenderer: BuiltInRendererDefinition; //# sourceMappingURL=boolean.d.ts.map