import React from 'react'; import { Palette } from 'components/common/color-picker/swatch-palette.component'; import { PopupProps } from 'components/common/popup.component'; interface Props extends Omit { brandColorIndex: number; brandColor: string; onChange: (brandColorIndex: number, brandColor: string) => void; brandLogoPalette?: Palette; className?: string; colorBoxClassName?: string; plusIconClassName?: string; displayEditIcon?: boolean; } export declare const BrandColorPicker: React.FC; export {};