@100mslive/roomkit-react
Version:

11 lines (10 loc) • 394 B
TypeScript
import React from 'react';
export declare const RequestPrompt: ({ open, onOpenChange, title, body, actionText, onAction, disableActions, }: {
open?: boolean | undefined;
onOpenChange: (value: boolean) => void;
title: string;
body: React.ReactNode;
actionText?: string | undefined;
onAction: () => void;
disableActions?: boolean | undefined;
}) => React.JSX.Element;