import * as React from 'react'; import type { DataTypes } from '../../../types/'; import type { Building, Site, User } from '../../../types/dbTypes'; import type { FileRow } from '../../../types/files'; interface MoreOptionsProps { row: Building | Site | FileRow | Partial; dataType: DataTypes; variant?: 'ghost' | 'outline' | 'default'; setView?: React.Dispatch>; hideViewOnMap?: boolean; onDeleteUser?: () => void; } export default function MoreOptions({ row, dataType, variant, setView, hideViewOnMap, onDeleteUser }: MoreOptionsProps): React.JSX.Element; export {}; //# sourceMappingURL=MoreOptions.d.ts.map