declare const SAMPLE_STRING = "terminal-nerds.DEV@2023"; declare const FALSY_STRINGS: readonly ["", "", "", string, string, string, string]; declare const NUMERIC_STRINGS: readonly ["123456789", "-123456789", "123.456789", "-123.456789", " 123.456789 ", " -123.456789 ", "0b11111111", "0o377", "0xFF", "10e1000", "Infinity", "-Infinity"]; declare const TRUTHY_STRINGS: readonly ["string from double quotes (\")", "string from single quotes (')", "string from backtick - template literals - (`)", "123456789", "-123456789", "123.456789", "-123.456789", " 123.456789 ", " -123.456789 ", "0b11111111", "0o377", "0xFF", "10e1000", "Infinity", "-Infinity"]; /** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String} String */ declare const SAMPLE_STRINGS: readonly ["", "", "", string, string, string, string, "string from double quotes (\")", "string from single quotes (')", "string from backtick - template literals - (`)", "123456789", "-123456789", "123.456789", "-123.456789", " 123.456789 ", " -123.456789 ", "0b11111111", "0o377", "0xFF", "10e1000", "Infinity", "-Infinity"]; export { FALSY_STRINGS, NUMERIC_STRINGS, SAMPLE_STRING, SAMPLE_STRINGS, TRUTHY_STRINGS };