import { Database } from "../types"; export declare const EMPTY_DATABASE: { companies: never[]; config: { staff: {}; subscriptionPlans: string[]; interactions: { kinds: string[]; tags: string[]; }; }; }; /** * Generate an empty database */ export declare function emptyDatabase(): Database;