declare type Options = { url?: string; ttl?: number; headers?: Record; }; export default function refresh(file: string, { url, ttl, headers, }?: Options): Promise; export {};