import React, { HTMLAttributes } from 'react';
import { BackgroundVariant } from '../../types';
export interface BackgroundProps extends HTMLAttributes {
variant?: BackgroundVariant;
gap?: number;
color?: string;
size?: number;
}
declare const _default: React.NamedExoticComponent;
export default _default;