/**
 * Generates a gradient box shadow based on an array of colors.
 * @param {string[]} colors - An array of colors to generate the gradient box shadow. Maximum 7 colors.
 * @returns {string} The gradient box shadow generated from the given colors.
 */
export declare const getGradientBoxShadow: (colors: string[]) => string;
