import { PaletteType } from '../lib/types'; import type { DefaultTheme } from 'styled-components'; /** * Create a theme by accepting an incomplete theme object and deriving the remaining colors based on button colors. * * @param {Partial} palettePartial The provided theme keys, whether we or the end user defined them. * @returns {DefaultTheme} */ export declare const createTheme: (palettePartial: Partial) => DefaultTheme;