import { BaseTypeOptions, OptionsInput, TypeInterface } from '../types/type-definitions.js'; type BooleanTypeOptions = BaseTypeOptions; export type BooleanType = TypeInterface<'boolean', Options>; export declare function BooleanType(): BooleanType; export declare function BooleanType>(options?: Options): BooleanType; export {};