import { h } from 'preact';
import { SurveyQuestion } from '../../../posthog-surveys-types';
export declare function QuestionHeader({ question, forceDisableHtml, htmlFor, }: {
    question: Pick<SurveyQuestion, 'question' | 'description' | 'descriptionContentType' | 'type'>;
    forceDisableHtml: boolean;
    htmlFor?: string;
}): h.JSX.Element;
export declare function Cancel({ onClick }: {
    onClick: () => void;
}): h.JSX.Element;
