/// import { OptionType } from "ag-grid-universal-filter"; export interface Category { name: string; demo: () => JSX.Element; } export interface Complex { name: string; value: number; description: string; } export interface ExampleProps { bigChoices: string[]; words: string[]; complex: Complex[]; typed: OptionType[]; } export interface ExampleModel { categories: Category[]; constructDemo: (demoName: string) => JSX.Element; } export declare const createExampleModel: (props: ExampleProps) => ExampleModel;