import { CSSProperties } from 'react'; export type CSS = Required; export declare const defaultTheme: { colors: { primary: string; text: string; line: string; background: string; error: string; danger: string; }; baseHeight: CSS["height"]; borderRadius: CSS["borderRadius"]; }; type DefaultTheme = typeof defaultTheme; export interface UserTheme extends Omit { colors: Omit; } export interface Theme extends DefaultTheme { } export {};