import { ExtractPropTypes } from 'vue';
export declare const colors: string[];
declare const Props: {
    id: {
        type: StringConstructor;
        default: () => string;
        description: string;
    };
    size: {
        type: StringConstructor;
        control: {
            type: string;
        };
        options: string[];
        validator: (val: string) => boolean;
        default: string;
        description: string;
    };
    color: {
        type: StringConstructor;
        control: {
            type: string;
        };
        options: string[];
        validator: (val: string) => boolean;
        default: string;
        description: string;
    };
    neon: {
        type: BooleanConstructor;
        default: boolean;
        description: string;
    };
};
export type KBadgeProps = Readonly<ExtractPropTypes<typeof Props>>;
export default Props;
