import { ValueOf } from '@hubspot/local-dev-lib/types/Utils'; import { ACTION_STATUSES } from '../constants.js'; type ActionStatus = ValueOf; export type ActionSectionProps = { status: ActionStatus; statusText: string; errorMessage?: string; children?: React.ReactNode; }; export declare function ActionSection({ status, statusText, errorMessage, children, }: ActionSectionProps): import("react/jsx-runtime").JSX.Element | null; export declare function getActionSection(props: ActionSectionProps): React.ReactNode; export {};