import { ThemeProps } from '../components/theme'; export interface UserTheme { /** * primaryColor - base color for all controls in the design system */ primaryColor?: string; /** * focusColor - color of all focus ring across the design system */ focusColor?: string; /** * secondaryColor - color for hover styles etc */ secondaryColor?: string; } export declare const generateTheme: ({ primaryColor, secondaryColor, focusColor }: UserTheme) => ThemeProps;