import './save-indicator.styles.scss'; import { FC, ReactNode } from 'react'; /** * SaveIndicatorProps * * @memberof SaveIndicator */ interface SaveIndicatorProps { isSaving: boolean; unAnimatedDots?: boolean; hideSpinner?: boolean; dotStyle?: 'flashing' | 'elastic'; savedIcon?: ReactNode; savingText?: string | ReactNode; savedText?: string | ReactNode; } /** * An saving state that will show the status of saving vs saved sates */ export declare const SaveIndicator: FC; export {};