/**
 * @author Jackiê Macklein
 * @company Onside tecnologia/Nettz
 * @copyright Todos direitos reservados.
 * @description Funcionalidades compatíveis com browser e Node.js
 */
import * as Barcode from "./Barcode";
import * as Number from "./Number";
import { OnTable } from "./Components/OnTable";
import * as ImageUtils from "./Utils/Image";
export { Barcode, Number, OnTable, ImageUtils };
export { analyzeBarcode, convertLineToBarcode, validateDVModulo11, checkBarcodeType, } from "./Barcode";
export type { BarcodeResult, BarcodeResultError, BarcodeType } from "./Barcode";
export type { Column, TableProps } from "./Components/OnTable";
export { toInteger, fromInteger } from "./Number";
declare const _default: {
    Barcode: typeof Barcode;
    Number: typeof Number;
    OnTable: <T>({ data, columns, onSort, onFilter, currentPage, totalPages, onPageChange, itemsPerPage, onItemsPerPageChange, itemsPerPageOptions, onSelectionChange, selectedItems, onRowAction, selectable, selectableItem, keyField, onVisibleColumnsChange, initialHiddenColumns, tableClassName, containerClassName, rowClassName, emptyStateMessage, loading, customButtons, totalItemCount, pagination, id, }: import("./Components/OnTable").TableProps<T>) => import("react/jsx-runtime").JSX.Element;
    ImageUtils: typeof ImageUtils;
};
export default _default;
