import * as THREE from 'three';
import { ColorCount } from '../models/ColorCount';
/**
 * Creates a 3D cube quantized colour palette the same or smaller than the
 * specified size, by default padded with greyscale up to the size.
 */
export declare function createQuantizedColorPalette(size?: number, padded?: boolean): THREE.Color[];
/**
 * Creates a color palette based on the specified color count
 */
export declare function createColorPalette(colorCount: ColorCount): THREE.Color[];
