import { BooleanCV } from '../types'; export declare const trueCV: () => BooleanCV; export declare const falseCV: () => BooleanCV; export declare const boolCV: (bool: boolean) => BooleanCV;