/**
 * Convert a camel-case name into a dashed name
 * - for example
 *       dashify("BigManStyle")
 *        // "big-man-style"
 */
export declare function dashify(camel: string): string;
