import { ReactNode } from 'react'; interface NotFoundErrorProps { /** 하단 버튼 라벨 */ readonly actionLabel?: string; /** * 기본 버튼을 다른 액션으로 교체할 때 사용합니다. * 라우터 Link로 이동시키려면 ``을 넘기세요. */ readonly children?: ReactNode; readonly className?: string; /** 설명. 줄바꿈은 `\n`으로 표현합니다. */ readonly description?: ReactNode; /** 기본 트래픽콘 일러스트를 교체할 때 사용합니다. */ readonly illustration?: ReactNode; /** 하단 버튼 클릭 콜백 (홈 이동 등) */ readonly onAction?: () => void; /** 제목 */ readonly title?: string; } /** * 페이지 유실(404) — 잘못된 주소/링크로 존재하지 않는 페이지에 접근했을 때 노출하는 풀스크린 에러. * * 부모 컨테이너 높이를 채우며(`min-h-full`) 하단에 액션 버튼을 둡니다. * 라우팅은 사용처 책임이며, `onAction` 콜백 또는 `children`(`Button asChild`)으로 연결합니다. */ declare function NotFoundError({ title, description, actionLabel, onAction, illustration, children, className, }: NotFoundErrorProps): import("react").JSX.Element; export type { NotFoundErrorProps }; export { NotFoundError }; //# sourceMappingURL=NotFoundError.d.ts.map