import * as React from "react"; import { SurveyQuestionUncontrolledElement } from "./reactquestion_element"; import { Base, QuestionCustomModel, QuestionCompositeModel } from "survey-core"; export declare class SurveyQuestionCustom extends SurveyQuestionUncontrolledElement { constructor(props: any); protected getStateElements(): Array; protected getRenderedElements(): Array; protected renderElement(): React.JSX.Element; } export declare class SurveyQuestionComposite extends SurveyQuestionUncontrolledElement { constructor(props: any); protected canRender(): boolean; protected renderElement(): React.JSX.Element; }