import type { GlobalProps, GlobalState, IconProps, TextProps } from '../../shared/model.js'; export declare const IconWeightList: readonly ["16", "20", "24", "32", "48", "64"]; export type IconWeightType = (typeof IconWeightList)[number]; export type DBIconDefaultProps = { variant?: string; weight?: IconWeightType; }; export type DBIconProps = DBIconDefaultProps & GlobalProps & IconProps & TextProps; export type DBIconDefaultState = {}; export type DBIconState = DBIconDefaultState & GlobalState;