import * as React from 'react'; import { ResponsiveCSSProps } from '../../util/css-props'; interface Props extends React.ComponentPropsWithRef<'div'>, Omit> { children: React.ReactNode; } /** * A Card is a generic content container. We use cards to visually separate * content areas in a layout. * * By default, Cards are rendered as `
` elements. Use the `as` prop * to change the underlying HTML element for improved semantics and * accessibility. */ export declare const Card: React.ForwardRefExoticComponent & React.RefAttributes>; export {};