import * as React from 'react';
interface IProps {
    title?: React.ReactNode;
    content?: React.ReactNode;
    action?: React.ReactNode;
}
declare class WorkflowTitle extends React.Component<IProps> {
    render(): {};
}
export default WorkflowTitle;
