import { IdentityGraphDisplayProps } from '../../types'; interface UseIdentityGraphDisplayProps { settings: IdentityGraphDisplayProps['settings']; } export declare const useIdentityGraphDisplay: (props: UseIdentityGraphDisplayProps) => { userGraphInfo: { value: any; id?: string | undefined; name?: string | undefined; label?: string | undefined; translateLabel?: string; dataType?: import("../../../../types").TFieldDataType | undefined; displayFormat?: string; enable?: number | undefined; status?: number | undefined; visible?: number | undefined; semantics?: { conceptType: string; conceptTypeEditable: boolean; semanticType: string; } | undefined; properties?: Record; isCustomField?: boolean; levelPosition?: number | undefined; aggregationType?: number | undefined; description?: string | null | undefined; aliasLabel?: string | null | undefined; inputFunction?: boolean; }[][]; isGraphInfoLoading: boolean; }; export {};