import type { ParseContext } from '../../types.js';
import { Schema } from '../Schema.js';
export declare class BooleanSchema extends Schema<boolean> {
    protected _normalize(input: unknown, ctx: ParseContext): boolean;
}
