export interface GroupRoleInterface {
    title?: string;
    key?: string;
    type?: string;
    code?: string;
    leaf?: boolean;
    selected?: boolean;
    expanded?: boolean;
    children?: Array<GroupRoleInterface>;
}
export declare class ComponentOption {
    roleGroupCode?: string;
    count?: number;
    defaultContacts?: Array<any>;
    userTypes?: string;
}
