/** * Given a string, strip out chars etc that would make it * and invalid javascript property name, then camelize it. * @param {string} value String to convert into a property */ export declare function propifyString(value: string): string;