export interface ISimpleNgSelectItem {
    id: string;
    text: string;
}
export interface ICompleteSelectItem extends ISimpleNgSelectItem {
    id: string;
    text: string;
    rawData: any;
}
export interface IChildNgSelectItem {
    text: string;
    children: [{
        id: string;
        text: string;
    }];
}
export declare class SelectModule {
}
