import { FC } from 'react';
export interface PaletteBlocksProps {
    /** Map of palette names to their color values. */
    palettes: Record<string, string>;
}
export declare const PaletteBlocks: FC<PaletteBlocksProps>;
