import { Arbitrary } from './definition/Arbitrary';
/**
 * For boolean values - `true` or `false`
 */
declare function boolean(): Arbitrary<boolean>;
export { boolean };
