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