import { ReactNode } from "react";
interface GrepsrSecondaryCardProps {
    leftHeader?: ReactNode | string | any;
    rightHeader?: Date | any;
    children?: ReactNode | any;
    iconImg?: string | any | null;
    sx?: any;
    borderBottom?: any;
}
export { GrepsrSecondaryCardProps };
declare const GrepsrSecondaryCard: {
    (props: GrepsrSecondaryCardProps): JSX.Element;
    defaultProps: {};
    propTypes: {};
};
export default GrepsrSecondaryCard;
