import { IHtmlDivProps } from "../../html";
import { IVariantPropsSurface } from "../../variants/surface";
/**
* A Div with a background color defined by the surface variants, suitable as a
* background for cards, modals, and other UI elements.
*
* The background color can be changed by setting the `className` prop to one
* @see {@link variants.surface} for more information about the surface variants.
* @see {@link Div} for more information about the Div component.
* @see {@link IHtmlDivProps} for more information about the Div props.
*/
export declare function Surface({ variant, className, ...props }: ISurfaceProps): import("react/jsx-runtime").JSX.Element;
export interface ISurfaceProps extends IHtmlDivProps {
variant?: IVariantPropsSurface;
}