interface Options { /** Full, absolute path to file including file name and extension */ filePath: string; } /** * Get a wireguard config file as a string */ export declare const getConfigStringFromFile: (opts: Options) => Promise; /** * Get a wireguard config file as a parsed object */ export declare const getConfigObjectFromFile: (opts: Options) => Promise>; export {};