export interface PropertyParserStrictDataTypes {
    /**
     * If set to true, the parser will throw an error if the value is not of a correct type.
     * If set to false or not set, the parser will try to parse the value to the correct type.
     */
    readonly strictDataTypes?: boolean;
}
