import { ComponentProps } from 'react'; /** * 페이지 유실(404) 일러스트 — 트래픽콘. * 의미는 함께 노출되는 제목/설명이 전달하므로 장식용(`aria-hidden`)입니다. */ declare function NotFoundIllustration({ className, ...props }: ComponentProps<'svg'>): import("react").JSX.Element; /** * 전체 페이지 불러오기 실패 일러스트 — 망원경. * 3개 레이어(그림자·본체·말풍선)를 200×200 좌표계에 배치합니다. 장식용(`aria-hidden`)입니다. */ declare function PageLoadIllustration({ className, ...props }: ComponentProps<'svg'>): import("react").JSX.Element; export { NotFoundIllustration, PageLoadIllustration }; //# sourceMappingURL=illustrations.d.ts.map