/// export interface BackgroundImageProps { id?: string; src: string; onImageChange: (newImageSrc: string | null) => void; } export declare function BackgroundImage({ id, src, onImageChange }: BackgroundImageProps): JSX.Element;