export declare function camelCaseToDashCase(input: string): string; export declare function dashCaseToCamelCase(input: string): string; /** * Exports the value under a given `name` in the global property `ng`. For example `ng.probe` if * `name` is `'probe'`. * @param name Name under which it will be exported. Keep in mind this will be a property of the * global `ng` object. * @param value The value to export. */ export declare function exportNgVar(name: string, value: any): void;