import type { ReactNode } from 'react';
export interface CtaActionsProps {
    /** One or two `Button`s: a primary and optionally a ghost one. */
    children: ReactNode;
}
/**
 * Centered horizontal row of call-to-action buttons (`.kwac-final-actions`),
 * used in the closing `Section final`. Wraps on narrow screens.
 */
export declare function CtaActions({ children }: CtaActionsProps): import("react").JSX.Element;
