import { ReactNode } from 'react'; import { BaseSnackbarProps } from './Snackbar'; interface SnackbarContextType { showSnackbar: (props: BaseSnackbarProps) => void; hideSnackbar: (id: string) => void; } export declare const SnackbarProvider: ({ children }: { children: ReactNode; }) => JSX.Element; export declare const useSnackbar: () => SnackbarContextType; export {};