/**
 * SpecialPropertySplitter
 * A proxy setter for special properties
 *
 * @author		Zeh Fernando
 * @version		1.0.0
 * @private
 */
export declare class SpecialPropertySplitter {
    parameters: any[];
    splitValues: Function;
    /**
     * Builds a new group special property object.
     *
     * @param		p_splitFunction		Function	Reference to the function used to split a value
     */
    constructor(p_splitFunction: Function, p_parameters: any[]);
    /**
     * Converts the instance to a string that can be used when trace()ing the object
     */
    toString: () => string;
}
