import { IDocNodeParameters, DocNode, DocSection } from '@microsoft/tsdoc'; export declare type DocNoteBoxType = 'tip' | 'note' | 'important' | 'warning' | 'danger'; /** * Constructor parameters for {@link DocNoteBox}. */ export interface IDocNoteBoxParameters extends IDocNodeParameters { type?: DocNoteBoxType; title?: string; } /** * Represents a note box, which is typically displayed as a bordered box containing informational text. */ export declare class DocNoteBox extends DocNode { readonly content: DocSection; private readonly _title; private readonly _type; constructor(parameters: IDocNoteBoxParameters, sectionChildNodes?: ReadonlyArray); readonly title: string | undefined; readonly type: string; /** @override */ readonly kind: string; /** @override */ protected onGetChildNodes(): ReadonlyArray; } //# sourceMappingURL=DocNoteBox.d.ts.map