/** * Returns a greeting based on the current time of day. * @param name The name to include in the greeting. * @param opts Optional greeting options. * @returns A greeting string. */ export declare function greeting(name?: string, opts?: { morning?: string; afternoon?: string; evening?: string; }): string;