import { PayPeriods } from "./types"; export declare function chunk(array: Array, size: number): Array; export declare function parseISO(dateISO: string): Date; export declare function isBetween(date: Date, start: Date, end: Date, includeEqual?: boolean): Boolean; export declare function formatCurrency(amount: number, country?: string, currency?: string): string; export declare function renderTable(payPeriods: PayPeriods): void;