import { CSSProperties } from "react"; import { ColumnType } from "@easyv/dtable-types/output/Column"; declare function FieldIcon({ className, style, type, onClick, }: { type: ColumnType; style?: CSSProperties; className?: string; onClick?: () => void; }): JSX.Element; export default FieldIcon;