import { ComponentPropsWithoutRef, FunctionComponent } from 'react';
import { ImageProps } from '../Image';
export type CardBackgroundProps = ComponentPropsWithoutRef<'div'> & Partial<ImageProps>;
export declare const CardBackground: FunctionComponent<CardBackgroundProps>;
