import * as react_jsx_runtime from 'react/jsx-runtime';
import { CardProps } from '@radix-ui/themes';

declare function Root({ children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
declare function Item({ children }: {
    children: React.ReactNode;
}): react_jsx_runtime.JSX.Element;

export { Item, Root };
