UNPKG

@e-group/material-module

Version:
13 lines (12 loc) 553 B
import React, { HTMLAttributes, ReactNode } from 'react'; import { TypographyProps } from '@material-ui/core/Typography'; import { QuestionOptionType } from '../../Survey/types'; export interface QuestionOptionProps extends HTMLAttributes<HTMLDivElement> { className?: string; type: QuestionOptionType; index: number; MuiTypographyProps?: TypographyProps; children?: ReactNode; } declare const QuestionOption: React.ForwardRefExoticComponent<QuestionOptionProps & React.RefAttributes<HTMLDivElement>>; export default QuestionOption;