/** * The endash is used in ranges like `$10k – $20k`. * This export makes it easier to use in the code, without having to find * the character in unicode. * It is a different character to the regular minus, usually a bit longer. * (for reference: minus `-`, endash `–`) */ export declare const endash = "\u2013"; export declare const emdash = "\u2014"; export declare const bullet = "\u2022"; export declare const nbsp: string; export declare const quoteLeft = "\u201C"; export declare const quoteRight = "\u201D"; export declare const apostrophe = "\u2019"; export declare const comma = ","; /** * A helper func to create a range string out of two strings, by putting an endash between them. */ export declare const range: (left: string, right: string) => string;