import ItemBase from '../../Item/ItemBase';
export default class ApplicationItem extends ItemBase {
    get type(): import("@awhere/interfaces").ItemTypeChildren.applicationItem;
    protected _subtype?: string | any;
    get subtype(): string | any | undefined;
    set subtype(value: string | any | undefined);
    constructor(props?: Partial<ApplicationItem>);
}
