import { Scale, Variant } from '../../variations';
export declare const BULLET_SIZES: readonly ["sm", "md"];
export type BulletSize = Extract<Scale, (typeof BULLET_SIZES)[number]>;
export declare const BULLET_VARIANTS: readonly ["grey", "blue", "teal", "pink", "orange", "red", "green", "ultramarine", "yellow", "purple", "lime"];
export type BulletVariant = Extract<Variant, (typeof BULLET_VARIANTS)[number]>;
export type BulletProperties = {
    /**
     * Bullet variant theme
     **/
    variant?: BulletVariant;
    /**
     * Bullet custom color, overrides variant
     **/
    customColor?: string;
    /**
     * Bullet size
     **/
    size?: BulletSize;
};
