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