import { ThemeUtils, IARCProps } from '@adam-sv/arc'; import { RefObject, type JSX } from 'react'; import './style.scss'; export interface IBackgroundProps extends IARCProps { themeInputHexes?: ThemeUtils.IThemeInputHexes; domRef?: RefObject; } export declare const Background: ({ children, className, id, overrideDefaultClassName, style, themeInputHexes, domRef, }: IBackgroundProps) => JSX.Element;