import React from 'react';
import { BackgroundVariant } from './types';
export interface BackgroundProps extends React.ComponentProps<'div'> {
variant?: BackgroundVariant;
disableRepeat?: boolean;
}
export declare const Background: React.FC<BackgroundProps>;
export * from './types';