import * as React from 'react';
import { usePreviewCardRoot } from './usePreviewCardRoot.js';
/**
 * Groups all parts of the preview card.
 * Doesn’t render its own HTML element.
 *
 * Documentation: [Base UI Preview Card](https://base-ui.com/react/components/preview-card)
 */
declare const PreviewCardRoot: React.FC<PreviewCardRoot.Props>;
declare namespace PreviewCardRoot {
    interface State {
    }
    interface Props extends usePreviewCardRoot.Parameters {
        children?: React.ReactNode;
    }
}
export { PreviewCardRoot };
