import React from 'react'; import type { IScheduledAction } from '../../../domain'; export interface IScheduledActionProps { action: IScheduledAction; } export declare class ScheduledAction extends React.Component { render(): JSX.Element; }