import { MemberType } from './typescript';
/**
 * Excludes from the passed array members that have names that are not important to the end user
 * @param members - List of members
 */
export declare function filterUselessMembers<T extends MemberType>(members: T[]): T[];
