import { FormatStringField } from './FormatStringField'; import { CreateElement, VNode } from 'vue'; import { InputRenderData } from '../types/fields/Field'; export declare class BooleanField extends FormatStringField { /** * Format boolean value to string */ valueFormatter(): Promise; /** * Parse value and convert to boolean */ valueParser(rawValue: any): Promise; /** * Simple Vue render function when using default inputComponent for input of field value with */ inputRender(h: CreateElement, { value, inputProps }: InputRenderData): VNode; }