import { IRect, DocController } from '../doc_controller'; import { IPdfBrickOptions, PdfBrick } from './pdf_brick'; import { IInputStyle } from '../style/types'; export interface IRankingItemBrickOptions extends IPdfBrickOptions { mark: string; } export declare class RankingItemBrick extends PdfBrick { protected options: IRankingItemBrickOptions; protected style: IInputStyle; constructor(controller: DocController, rect: IRect, options: IRankingItemBrickOptions, style: IInputStyle); renderInteractive(): Promise; }