export interface JsonTreeTheme {
    /** Class names applied to each JSON tree node and its parts. */
    node: {
        label: string;
        value: string;
        delimiter: string;
        symbol: string;
        count: string;
    };
    /** CSS class applied to the pager used for paginated nodes. */
    pager: string;
}
export declare const jsonTreeTheme: JsonTreeTheme;
