export interface IExample { key: string; title: string; onRender?: () => JSX.Element; } export declare class ExampleGroup { private _title; private _examples; constructor(title: string); readonly title: string; readonly examples: IExample[]; add(title: string, onRender: () => JSX.Element): ExampleGroup; } export declare function examplesOf(title: string): ExampleGroup;