import { ConfigurationAttribute, Type } from '../Core/types';
import SparqlObject from '../SparqlObject/SparqlObject';
import parseTriple from './_parseTriples';
export declare class SparqlAttribute {
    name: string;
    arrayable: boolean;
    optional: boolean;
    type: Type;
    reference: string;
    binding: string;
    triples: string[];
    constructor(sparqlObject: SparqlObject, confAttribute?: ConfigurationAttribute);
    parseTriple: typeof parseTriple;
}
export default SparqlAttribute;
