import type * as React from 'react'; export interface IExample { key: string; title: string; onRender?: () => React.ReactElement; } export declare class ExampleGroup { private _title; private _examples; constructor(title: string); get title(): string; get examples(): IExample[]; add(title: string, onRender: () => React.ReactElement): ExampleGroup; } export declare function examplesOf(title: string): ExampleGroup;