export interface ApSelectItem {
name: string;
value: string;
}
export interface ApSelectLayoutProps<T extends ApSelectItem> {
title: string;
request: () => Promise<T[]>;
onSearch?: (item: T, val: string) => boolean;
defaultFold?: boolean;
defaultValue?: string;
}