import React from 'react'; import Error from './Error'; declare type Props = { name: string; } & Omit, 'id'>; export default function ContextError({ name, children, ...rest }: Props): JSX.Element; export {};