import { PickerButton, PickerColumn } from '@ionic/angular/standalone'; export interface CascaderOptions { backdropDismiss?: boolean; buttons?: PickerButton[]; columns?: PickerColumn[]; } export type CascaderType = 'default' | 'province' | 'city' | 'area'; export interface Props { text: string; value: string; children: string; } export interface CascaderColumn { name: string; options: any[]; selectedIndex?: number; }