/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the font weight.
 *
 * The possible values are:
 * * `light`&mdash;font-weight: 300
 * * `normal`&mdash;font-weight: 400
 * * `bold` For Default and Bootstrap themes&mdash;font-weight: 700. For Material theme&mdash;font-weight: 500.
 */
export type TypographyFontWeight = 'light' | 'normal' | 'bold';
/**
 * @hidden
 */
export declare const typographyFontWeightOptions: {
    light: string;
    normal: string;
    bold: string;
};
