/// import type { ISlideProps } from '../Transitions'; export declare type ISnackbarProps = ISlideProps & { accessibilityAnnouncement?: string; autoHideDuration?: number; }; export declare type ISnackbarConfig = { enableOverlay?: boolean; position?: 'top' | 'bottom' | 'center'; }; export declare type IsetSnackbar = (component: React.ReactNode, config?: ISnackbarProps & ISnackbarConfig) => void; export declare type IuseSnackbarProps = () => { setSnackbar: IsetSnackbar; };