/**
 * @param {string} color
 * @param {Object} options
 * @param {number} options.index 1 - 10 (default: 6)
 * @param {boolean} options.dark
 * @param {boolean} options.list
 * @param {string} options.format 'hex' | 'rgb' | 'hsl'
 *
 * @return string | string[]
 */
export declare const generate: (color: string, options?: {
    dark?: boolean;
    list?: boolean;
    index?: number;
    format?: "hex" | undefined;
}) => any;
