import * as react from 'react';
import { HTMLAttributes } from 'react';
interface CTABandProps extends Omit, 'title'> {
title: React.ReactNode;
description?: React.ReactNode;
actions?: React.ReactNode;
accentBar?: boolean;
}
declare const CTABand: react.ForwardRefExoticComponent>;
export { CTABand, type CTABandProps };