export interface SaveStatusProps { /** Current status of the indicator */ status: 'success' | 'progress' | 'failure'; } declare const SaveStatus: ({ status, ...other }: SaveStatusProps) => JSX.Element; export default SaveStatus;