declare const cssPath: () => string;
declare const woff2Path: () => string;
declare const ttfPath: () => string;
declare const spritePath: () => string;
declare const codepointsPath: () => string;
interface Codepoints {
    [name: string]: number;
}
declare const loadCodepoints: () => Promise<Codepoints>;

export { type Codepoints, codepointsPath, cssPath, loadCodepoints, spritePath, ttfPath, woff2Path };
