import type { Theme } from './PropsType'; export declare const themes: { readonly '--theme-primary-lighter': "#303030"; readonly '--color-text': "rgba(255, 255, 255, 0.85)"; readonly '--color-text-inverse': "rgba(255, 255, 255, 0.8)"; readonly '--color-text-placeholder': "rgba(255, 255, 255, 0.3)"; readonly '--color-text-disabled': "#666"; readonly '--border-color': "#3a3b3d"; readonly '--opacity-mask': "0.7"; readonly '--activity-indicator-path-color': "var(--border-color)"; readonly '--action-sheet-background': "#1b1c1e"; readonly '--action-sheet-active-background': "#363738"; readonly '--alert-button-background': "#2b2c2d"; readonly '--alert-button-active-background': "#363738"; readonly '--button-default-background': "#393939"; readonly '--button-default-border': "transparent"; readonly '--button-default-color': "rgba(255, 255, 255, 0.85)"; readonly '--button-default-active-background': "rgba(255, 255, 255, 0.2)"; readonly '--button-default-active-border': "transparent"; readonly '--button-default-active-color': "#fff"; readonly '--calendar-background': "transparent"; readonly '--calendar-week-bar-background': "#303030"; readonly '--cell-background': "#222"; readonly '--cell-background-active': "#363738"; readonly '--cell-arrow-color': "#666"; readonly '--cell-arrow-disabled-color': "#333"; readonly '--checkbox-background': "transparent"; readonly '--checkbox-border-color': "#58595d"; readonly '--checkbox-disabled-background': "#555"; readonly '--checkbox-disabled-color': "rgba(255, 255, 255, 0.3)"; readonly '--collapse-arrow-color': "#666"; readonly '--collapse-arrow-disabled-color': "#333"; readonly '--confirm-button-background': "#2b2c2d"; readonly '--confirm-button-active-background': "#363738"; readonly '--keyboard-background': "#000"; readonly '--keyboard-item-background': "rgba(255, 255, 255, 0.1)"; readonly '--loading-background': "#2b2c2d"; readonly '--modal-background': "#2b2c2d"; readonly '--modal-close-color': "rgba(255, 255, 255, 0.3)"; readonly '--modal-close-active-color': "rgba(255, 255, 255, 0.65)"; readonly '--nav-bar-color': "#1b1c1e"; readonly '--panel-body-background': "#1b1c1e"; readonly '--picker-background': "#000"; readonly '--picker-header-background': "#1b1c1e"; readonly '--picker-mask-background-start': "rgba(0, 0, 0, 0.4)"; readonly '--picker-mask-background-end': "rgba(0, 0, 0, 0.8)"; readonly '--progress-background': "var(--border-color)"; readonly '--radio-background': "transparent"; readonly '--radio-border-color': "#58595d"; readonly '--radio-disabled-background': "#555"; readonly '--radio-disabled-color': "rgba(255, 255, 255, 0.3)"; readonly '--search-bar-background': "#1b1c1e"; readonly '--search-bar-inner-background': "#000"; readonly '--slider-line-dot-color': "var(--border-color)"; readonly '--switch-background': "#38393d"; readonly '--stack-picker-background': "#000"; readonly '--stack-picker-shadow': "none"; readonly '--stepper-input-background': "#000"; readonly '--tabbar-background': "#1b1c1e"; readonly '--toast-background': "#2b2c2d"; readonly '--tooltip-background': "#5b5c60"; }; declare const setTheme: (value: Theme) => void; export default setTheme;