import { MemberViewType } from '../types'; export interface GranularityListMemberProps { name: string; title?: string; isCustom?: boolean; isSelected: boolean; isMissing?: boolean; memberViewType?: MemberViewType; onToggle: () => void; } export declare function GranularityListMember(props: GranularityListMemberProps): import("react/jsx-runtime").JSX.Element;