import React from 'react'; import { BoxProps } from '@chakra-ui/react'; export interface CardSubsectionProps extends BoxProps { children?: React.ReactNode; } export declare function CardSubsection({ children, ...rest }: CardSubsectionProps): JSX.Element;