import * as React from 'react'; import { StyleTypes } from '../../styles'; import { Origin } from './styled-snackbar'; interface Props { children: React.ReactNode; open: boolean; onClose: () => void; origin: Origin; autoClose: boolean; color?: string; type?: StyleTypes; autoHideDuration: number; } declare const Snackbar: { (props: Props): JSX.Element; defaultProps: { autoHideDuration: number; autoClose: boolean; origin: { vertical: string; horizontal: string; }; onClose: () => void; }; }; export default Snackbar;