import * as React from 'react'; import '@vtmn/css-snackbar/dist/index-with-vars.css'; export interface VtmnSnackbarProps extends Omit, 'onClose'> { /** * The snackbaOmit, 'onClose'>r's content */ content: string; /** * The label of the action button */ actionLabel?: string; /** * Whether there is a close button */ withCloseButton?: boolean; /** * Duration of the snackbar in ms */ timeout?: number; /** * The alert callback close function * @type {function} */ onClose?: (event: React.MouseEvent | undefined) => void; } export declare const VtmnSnackbar: ({ content, actionLabel, withCloseButton, onClose, className, timeout, }: VtmnSnackbarProps) => JSX.Element; declare const MemoVtmnSnackbar: React.MemoExoticComponent<({ content, actionLabel, withCloseButton, onClose, className, timeout, }: VtmnSnackbarProps) => JSX.Element>; export default MemoVtmnSnackbar;