import type { EditableNodeAttributes } from "../types"; interface CTABannerProps extends EditableNodeAttributes { /** Background gradient or solid color */ bg?: string; /** Gradient direction for two-color gradients */ gradient?: string; children?: React.ReactNode; className?: string; } export declare function CTABanner({ bg, gradient, children, className, "data-node-id": dataNodeId, }: CTABannerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=CTABanner.d.ts.map