/** * Check if a value is defined * @param value */ export declare const isDefined: (value: "" | T | null | undefined) => value is Exclude;