export type Variant = { weight: number; style: string; }; export interface Spec { font: string; variants: Variant[]; } export declare function parse_spec(input: string): Spec;