/// import './utils/bg-to-url'; export interface BackgroundSizeProps { id?: string; backgroundSize: string; backgroundImage?: string; onSizeChange: (value: string) => void; } export declare function BackgroundSize({ id, backgroundSize, backgroundImage, onSizeChange }: BackgroundSizeProps): JSX.Element;