import { CSSObject } from "create-emotion"; import { TColor } from "../types"; interface ITheme { buttons: (props: { color: TColor, isGhost: boolean, isFluid: boolean }) => CSSObject, alerts: (props: { color: TColor, isCloseable: boolean }) => CSSObject, } export const themes: { standard: ITheme, material: ITheme, }