/** Reads a json file and parses it */
export declare function readJson<T = {
    [key: string]: unknown;
}>(file: string): T;
