export declare const colors: string[];
declare const _default: {
    value: {
        type: (StringConstructor | NumberConstructor)[];
        default: number;
        required: boolean;
        description: string;
    };
    square: {
        type: BooleanConstructor;
        default: boolean;
        description: string;
    };
    circle: {
        type: BooleanConstructor;
        default: boolean;
        description: string;
    };
    offsetX: {
        type: NumberConstructor;
        default: number;
        description: string;
    };
    offsetY: {
        type: NumberConstructor;
        default: number;
        description: string;
    };
    size: {
        type: StringConstructor;
        options: string[];
        validator: (val: string) => boolean;
        default: string;
        description: string;
    };
    color: {
        type: StringConstructor;
        options: string[];
        validator: (val: string) => boolean;
        default: string;
        description: string;
    };
    neon: {
        type: BooleanConstructor;
        default: boolean;
        description: string;
    };
    tag: {
        type: StringConstructor;
        default: string;
    };
};
export default _default;
