declare enum StressType {
    No = 0,
    Primary = 1,
    Secondary = 2
}
export declare class Stress {
    type: StressType;
    private ipa;
    static No: Stress;
    static Primary: Stress;
    static Secondary: Stress;
    private constructor();
    markIpa(): string;
    markArpabet(): number;
}
export {};
