UNPKG

@spaced-out/ui-design-system

Version:
23 lines 724 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; type ClassNames = Readonly<{ wrapper?: string; image?: string; heading?: string; title?: string; description?: string; children?: string; }>; export interface ErrorMessageProps { classNames?: ClassNames; children?: React.ReactNode; imageVariant?: 'unauthorized' | 'forbidden' | 'notFound' | 'serverError'; title?: React.ReactNode; description?: React.ReactNode; heading?: React.ReactNode; customImageUrl?: string; testId?: string; } export declare const ErrorMessage: Flow.AbstractComponent<ErrorMessageProps, HTMLDivElement>; export {}; //# sourceMappingURL=ErrorMessage.d.ts.map