import { ISnack, SnackbarProps, VoidFunction } from './Snackbar.types'; export declare const SNACK_EVENTS: Record; export declare const serve: (props: SnackbarProps) => VoidFunction; export declare const eat: (snackId: string) => void; export declare const serveNeutral: (props: SnackbarProps) => VoidFunction; export declare const servePositive: (props: SnackbarProps) => VoidFunction; export declare const serveWarning: (props: SnackbarProps) => VoidFunction; export declare const serveDisruptive: (props: SnackbarProps) => VoidFunction; export declare const snack: ISnack;