type RequireStringOptions = {
    allowEmpty?: boolean;
};
/**
 * Ensure argument exists and is a string. Throws with a consistent message.
 */
export declare function requireString(args: Record<string, unknown>, name: string, options?: RequireStringOptions): string;
export {};
