import { type ColorProperty } from './createColor'; export type CreatedBackgroundColorTheme = { black: string; white: string; 'white-darken': string; background: string; border: string; brand: string; column: string; 'column-darken': string; 'base-grey': string; 'over-background': string; head: string; 'head-darken': string; 'action-background': string; main: string; 'main-darken': string; danger: string; 'danger-darken': string; 'warning-yellow': string; 'warning-yellow-darken': string; overlay: string; scrim: string; green: string; grey: { 9: string; '9-darken': string; }; inherit: 'inherit'; transparent: 'transparent'; }; export declare const defaultBackgroundColor: CreatedBackgroundColorTheme; export declare const createBackgroundColor: (userColor?: ColorProperty) => CreatedBackgroundColorTheme;