export interface SpdxToken {
    readonly type: "AND" | "OR" | "WITH" | "(" | ")" | "+" | "identifier";
    readonly text: string;
}
export declare function scanSpdxExpression(text: string): SpdxToken[];
