export interface Design { rounding: Rounding; borderWidth: BorderWidth; theme: Theme; } export interface Rounding { box: string; checkbox: string; invisibleHint: string; } export interface BorderWidth { box: string; checkbox: string; } export interface Theme { light: Colors; dark: Colors; } export interface Colors { boxDefaultBackground: string; boxDefaultText: string; boxDefaultBorder: string; boxCheckboxBackground: string; boxCheckboxBorder: string; boxSuccessBackground: string; boxSuccessBorder: string; boxFailureBackground: string; boxFailureBorder: string; boxFailureText: string; invisibleHintBackground: string; spinnerColor: string; successIconColor: string; } export declare const defaultDesign: Design; export declare function mergeDesign(custom: Partial): Design;