import React from 'react'; declare type Props = { 'data-qa'?: string; autoHideDuration?: number; buttonText?: string; isOpen?: boolean; onClose?: () => void; priority: 'low' | 'high'; text: string; theme: 'neutral' | 'negative' | 'warning' | 'positive'; }; declare const Snackbar: React.FC; export default Snackbar;