UNPKG

@synapsecns/widget

Version:
19 lines (18 loc) 741 B
/** * Displays warning message triggered by start and end time. * Renders for selected origin and/or destination chain IDs. */ export declare const MaintenanceWarningMessage: ({ originChainId, destinationChainId, startDate, endDate, pausedOriginChains, pausedDestinationChains, warningMessage, disabled, }: { originChainId: number; destinationChainId: number; startDate: Date; endDate: Date; pausedOriginChains: number[]; pausedDestinationChains: number[]; warningMessage: any; disabled?: boolean; }) => import("react/jsx-runtime").JSX.Element; export declare const WarningMessage: ({ header, message, }: { header?: string; message?: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element;