import React from 'react'; export declare type AcmPageProccessProps = { isLoading: boolean; loadingTitle?: string | React.ReactNode; loadingMessage?: string | React.ReactNode; loadingPrimaryAction?: React.ReactNode; loadingSecondaryActions?: React.ReactNode; successTitle?: string | React.ReactNode; successMessage?: string | React.ReactNode; successAction?: React.ReactNode; primaryAction?: React.ReactNode; secondaryActions?: React.ReactNode; }; export declare function AcmPageProcess(props: AcmPageProccessProps): JSX.Element;