import { type ComponentPropsWithoutRef, type FC, type ReactNode } from 'react'; type AbstractProps = { /** ロゴ */ logo?: ReactNode; /** コンテンツの上に表示されるタイトル */ title?: ReactNode; /** コンテンツの下に表示されるアンカー要素のリスト */ links?: Array<{ /** アンカー要素のテキスト */ label: ReactNode; /** アンカー要素の href */ url: string; /** アンカー要素の target。`_blank` を設定すると外部リンクアイコンが表示されます。*/ target?: string; }>; /** 表示するコンテンツ */ children?: ReactNode; /** コンポーネントに適用するクラス名 */ className?: string; }; type Props = AbstractProps & Omit, keyof AbstractProps>; export declare const ErrorScreen: FC; export {};