export interface ParseValueElementOptions<Value> {
    parseValue?: (rawValue: string) => Value;
}
export declare class ParseValueElementMixin<Value> {
    readonly options: any;
    constructor(options?: any);
    parseValue(rawValue: string): Value;
}
