/**
 * Rule: Camel Case Properties
 * ---------------------------
 * Ensures that properties of type String, Double, Integer, Long, DateTime, and Boolean
 * are named using camelCase. This promotes consistency and readability in property naming
 * conventions across the model.
 */
declare const _default: {
    description: string;
    given: string;
    message: string;
    severity: number;
    then: {
        function: import("@stoplight/spectral-core").RulesetFunctionWithValidator<string, import("@stoplight/spectral-functions").CasingOptions>;
        functionOptions: {
            type: string;
        };
    };
};
export default _default;
