import { ColDef } from "ag-grid-community"; import "./Demo.css"; import { Bond } from "../interfaces/bond"; import { ChoiceDefinition, OptionType } from "ag-grid-universal-filter"; export interface DemoModel { choices: ChoiceDefinition[]; columnDefs: ColDef[]; rowData: Bond[]; } export interface DemoProps { bondList: Bond[]; } export declare const formatDate: (date: Date) => string; export declare const stringToDate: (text: string) => Date; export declare const stringToIsoDateString: (option: OptionType) => string; export declare const dateCompare: (compareValue: Date, cellValue: any) => number; export declare const createDemoModel: (bondList: Bond[]) => DemoModel;