import React, { PropsWithChildren } from 'react'; /** * @description * A card component which can be used to group related content. * * @example * ```ts * import { Card } from '@vendure/admin-ui/react'; * * export function MyComponent() { * return ( * *

Some content

*
* ); * } * ``` * * @docsCategory react-components */ export declare function Card(props: PropsWithChildren<{ title?: string; paddingX?: boolean; }>): React.JSX.Element;