export type WordmarkStyle = "block" | "ascii"; export type WordmarkSize = "compact" | "large"; export interface WordmarkOptions { readonly indent?: string; readonly style?: WordmarkStyle; readonly size?: WordmarkSize; } export declare const WORDMARK_TOP_HEX = "#12D9B0"; export declare function wordmarkWidth(word: string, size?: WordmarkSize): number; export declare function renderWordmark(word: string, options?: WordmarkOptions): string;