import React from "react"; import { FormatterProps } from "../TableProps"; export type LinkFormatterProps = Pick & { settings: { href: (row: any, rowIndex: number) => string; content?: (row: any, rowIndex: number) => React.ReactNode; newTab?: boolean; icon?: React.ElementType; iconColor?: string; }; }; export declare function LinkFormatter({ row, rowIndex, settings }: LinkFormatterProps): any; //# sourceMappingURL=LinkFormatter.d.ts.map