@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
18 lines (17 loc) • 535 B
TypeScript
/// <reference types="react" />
export interface StatusModalState {
buttonText?: string;
cancelText?: string;
feedbackText?: string;
status: 'warning' | 'info' | 'success';
isInfo?: boolean;
link?: string;
linkText?: string;
message: React.ReactNode;
onSubmit?: () => void;
onCancel?: () => void;
onFeedback?: () => void;
title: string;
dataTestId: string;
}
export declare const StatusModal: import("react").ForwardRefExoticComponent<import("react").RefAttributes<HTMLDivElement>>;