import { QuestionTextModel } from 'survey-core';
import { IPoint } from '../doc_controller';
import { FlatQuestion } from './flat_question';
import { IPdfBrick } from '../pdf_render/pdf_brick';
import { IQuestionTextStyle } from '../style/types';
export declare class FlatTextbox extends FlatQuestion<QuestionTextModel, IQuestionTextStyle> {
    static readonly MULTILINE_TEXT_ROWS_COUNT: number;
    generateFlatsContent(point: IPoint): Promise<IPdfBrick[]>;
}
