export declare enum ISwatchType { vibrant = "Vibrant", vibrantDark = "Vibrant Dark", vibrantLight = "Vibrant Light", muted = "Video", mutedDark = "Muted Dark", mutedLight = "Muted Light" } export declare type ISwatch = { color: string; population: number; }; export declare type ISwatchWithName = ISwatch & { name: string; }; export interface IPalette { Muted: ISwatch; "Muted Dark": ISwatch; "Muted Light": ISwatch; Vibrant: ISwatch; "Vibrant Dark": ISwatch; "Vibrant Light": ISwatch; } export default class Palette { static getNamedSwatchesFromUrl(url: string): Promise; static getAllSwatchesFromUrl(url: string): Promise; static getNamedSwatches(path: string): Promise; static getAllSwatches(path: string): Promise; }