type ErrorPageProps = { text: string; action?: { text: string; onClick: () => void; }; }; export default function ErrorContainer({ text, action }: ErrorPageProps): import("react/jsx-runtime").JSX.Element; export {};