@servicetitan/assist-ui
Version:
ServiceTitan Atlas UI Components
19 lines • 570 B
TypeScript
import { FC } from 'react';
import { MessageProps } from './message-interface';
interface SystemMessageRadioOption {
label: string;
description?: string;
value: string;
}
interface SystemMessageProps extends MessageProps {
message: string;
radioOptions: SystemMessageRadioOption[];
selectedValue: string;
onRadioChange: (value: string) => void;
buttonText: string;
onSubmit: () => void;
buttonDisabled?: boolean;
}
export declare const SystemMessage: FC<SystemMessageProps>;
export {};
//# sourceMappingURL=system-message.d.ts.map