import { Storage } from './index.cjs';

declare const table: ({ storage, printer }: {
    storage?: Storage | undefined;
    printer?: {
        (tabularData?: any, properties?: string[] | undefined): void;
        (tabularData: any, properties?: readonly string[] | undefined): void;
    } | undefined;
}) => Promise<void>;
declare const startChangeReporter: ({ storage, printer }: {
    storage?: Storage | undefined;
    printer?: {
        (tabularData?: any, properties?: string[] | undefined): void;
        (tabularData: any, properties?: readonly string[] | undefined): void;
    } | undefined;
}) => void;

export { startChangeReporter, table };
