export declare const DEFAULT_LABEL = "Continue"; interface ActionButtonProps { action: string | object; onAction: Function; } declare const ActionButton: ({ action: _action, onAction, ...attrs }: ActionButtonProps) => import("react/jsx-runtime").JSX.Element | null; export default ActionButton;