import { JSX } from 'react'; import { CustomHref } from '../../button-link'; export interface ErrorProps { code: number; details: { docs: string; hint: string; rejectReason: string; }; message: string; status: string; reason: string; } export interface AdditionalProps { forgotPasswordURL?: CustomHref | string; signupURL?: CustomHref | string; logoutURL?: CustomHref | string; loginURL?: CustomHref | string; } export interface MessageSectionProps { url?: CustomHref | string; buttonText: string; dataTestId?: string; text?: string; } export declare const MessageSection: ({ text, url, buttonText, dataTestId, }: MessageSectionProps) => JSX.Element; //# sourceMappingURL=common.d.ts.map