declare module "@iarna/toml" { interface FuncParse { (toml: string): object async: (toml: string, options: { blocksize: number }) => Promise stream: (readable: NodeJS.ReadableStream) => Promise } export const parse: FuncParse export function stringify (obj: object): string }