import { WithSnackBarProps } from './WithSnackBar.types'; /** * 스낵바를 포함하는 래퍼 컴포넌트입니다. * 자식 컴포넌트 상단에 알림 메시지를 표시할 수 있습니다. * * @param {Object} props * @param {React.ReactNode} props.children - 래핑될 자식 컴포넌트 * @param {boolean} props.isOpen - 스낵바 표시 여부 * @param {string} props.message - 스낵바에 표시될 메시지 * @param {MessageType} props.type - 스낵바의 타입 (information, success, progress, waiting, caution, error) * @param {() => void} props.onClose - 스낵바 닫기 핸들러 * * @example * ```tsx * setIsOpen(false)} * > * * * ``` */ declare const WithSnackBar: ({ children, isOpen, message, type, onClose, }: WithSnackBarProps) => import("react/jsx-runtime").JSX.Element; export { WithSnackBar };