/**
 * Converts a dash-separated string to camel case.
 *
 * @param dashName - The dash-separated string to convert.
 * @returns The camel case version of the input string.
 */
export declare function dashToCamelCase(dashName: string): string;
