interface IProps { open?: boolean; confirmationOnLeave?: boolean; children?: React.ReactNode; loading?: boolean; onDiscard?: () => void; onSave?: () => void; onShow?: () => void; onHide?: () => void; } declare const SaveBar: ({ open, confirmationOnLeave, loading, children, onDiscard, onSave, onHide, onShow }: IProps) => null; export default SaveBar;