import { default as React, ReactNode } from 'react'; interface ComponentBodyPropType { className?: string; id?: string; style?: React.CSSProperties; children?: ReactNode; key?: number | string; } export declare function Question({ className, id, style, children, key, }: ComponentBodyPropType): import("react/jsx-runtime").JSX.Element; export {};