import React from 'react'; import { Brand } from 'types/entities.types'; interface Props { isLoading: boolean; sidePadding?: number; selectedColors: string[]; setSelectedColors: (colors: string[]) => void; brand: Brand | undefined; videoColorTemplateNumber: number; } export declare const VideoColors: React.FC; export {};