import React from 'react'; type StatusCellProps = { status: string; }; /** * Component to display status field for Puppet reports and events. * * @public */ export declare const StatusField: (props: StatusCellProps) => React.JSX.Element; export {};