/** * Determine if the type is string and is not empty (length greater than zero) * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `string` and length greater than zero */ export declare const isSetString: (value: unknown) => value is NonNullable;