/** * Copies a 2-D data array to the clipboard as an HTML table with a TSV plain-text fallback. * * @param data - The table rows and cells. * @param options - Formatting options. * @returns `true` when the copy succeeded. * * @example * console.log(await copyTable([['Name', 'Age'], ['Alice', '30']])) * * @since 1.0.0 */ declare const copyTable: (data: (string | number)[][], options?: { header?: boolean; delimiter?: string; }) => Promise; export default copyTable;