import React from 'react'; export interface Action extends React.ButtonHTMLAttributes { text: string; } interface Props { primaryAction: Action; secondaryAction?: Action; } declare const CallsToAction: ({ primaryAction, secondaryAction, }: Props) => JSX.Element; export default CallsToAction;