/** The row rung — a glyph in a row or a control, which is most of them. */ export declare const GLYPH_DEFAULT_SIZE = 16; export interface GlyphProps { size: number; strokeWidth: number; /** The wrapper's ink reaches the stroke, so the sheet owns the colour. */ color: "currentColor"; } export declare function glyphProps(size: number): GlyphProps;