import { FField } from "../field"; import { FBooleanFieldType, FBooleanOptions } from "../types"; export declare class FBooleanField extends FField implements FBooleanFieldType { options?: FBooleanOptions; constructor(config?: Omit); static create(config: Omit): FBooleanField; }