/**
 * Strip leading/trailing quotes from a string and handle null values.
 */
export declare function stripQuotes(value?: string | null): string | null;
