import { OptionsObject } from 'notistack'; import { SnackbarContentProps } from '../components/common'; type Options = OptionsObject & Pick; export declare const useSnackbar: () => { openSnackbar: (message: string, options?: Options) => void; }; export {};