import { PropertyParser } from '../types';
import { PropertyParserAbstract } from './property-parser.abstract';
export declare class PropertyParserStringToBooleanDecorator extends PropertyParserAbstract<boolean> {
    private parser;
    constructor(parser: PropertyParser<boolean>);
    parse(value: unknown): boolean;
}
