UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
18 lines (17 loc) 535 B
/// <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>>;