import { CardSpacing } from "../card.config"; import { CardRowProps } from "./card-row.component"; export interface StyledCardRowProps extends CardRowProps { spacing: CardSpacing; } declare const StyledCardRow: import("styled-components").StyledComponent<"div", any, { theme: object; } & StyledCardRowProps, "theme">; export default StyledCardRow;