///
import type { CellPlugin, ImageUploadType, RGBColor } from '@react-page/editor';
import type { BackgroundControlsProps } from './controls';
import type { ModeEnum } from './ModeEnum';
import type { BackgroundRendererProps } from './renderer';
import type { BackgroundState } from './state';
import type { Translations } from './translations';
export declare type BackgroundSettings = {
Renderer: React.ComponentType;
Controls: React.ComponentType;
enabledModes?: ModeEnum;
getInitialChildren?: CellPlugin['createInitialChildren'];
defaultBackgroundColor?: RGBColor;
defaultGradientColor?: RGBColor;
defaultGradientSecondaryColor?: RGBColor;
defaultMode?: ModeEnum;
defaultModeFlag?: ModeEnum;
defaultDarken?: number;
defaultLighten?: number;
defaultHasPadding?: boolean;
defaultIsParallax?: boolean;
imageUpload?: ImageUploadType;
translations?: Translations;
cellStyle?: CellPlugin['cellStyle'];
};
//# sourceMappingURL=settings.d.ts.map