export interface DetailsOptions {
    readonly color?: string;
    readonly open?: boolean;
    readonly hideIfEmpty?: boolean;
    readonly prefixInit?: string;
}
export declare function details(title: string, content: string, { color, open, hideIfEmpty, prefixInit }?: DetailsOptions): string;
export interface BlockOptions {
    readonly type: 'NOTE' | 'WARNING' | 'TIP';
    readonly content: string;
}
export declare function block({ type, content }: BlockOptions): string;
