export interface WithVisibilityOption { isVisible?: boolean; } export interface WithActiveOption { active?: boolean; } export interface OnChangeCustomEvent { value: number; } export interface WithOnChangeEvent { onChange: (event: T) => void; } //# sourceMappingURL=Models.d.ts.map