ErrorScreen.d.ts 315 B

12345678910
  1. /// <reference types="react" />
  2. export declare type ErrorScreenTranslations = Partial<{
  3. titleText: string;
  4. helpText: string;
  5. }>;
  6. declare type ErrorScreenProps = {
  7. translations?: ErrorScreenTranslations;
  8. };
  9. export declare function ErrorScreen({ translations }: ErrorScreenProps): JSX.Element;
  10. export {};