import React from "react"; import { PaddingProps } from "styled-system"; import { TagProps } from "../../../__internal__/utils/helpers/tags/tags"; export interface CardRowProps extends PaddingProps, TagProps { /** Child nodes */ children: React.ReactNode; } /** @deprecated `CardRow` has been deprecated. */ declare const CardRow: { ({ children, ...rest }: CardRowProps): React.JSX.Element; displayName: string; }; export default CardRow;