export declare const casing: {
    meta: {
        deprecated: boolean;
        replacedBy: string[];
        docs?: {
            description?: string | undefined;
            category?: string | undefined;
            recommended?: boolean | undefined;
            url?: string | undefined;
            suggestion?: boolean | undefined;
        } | undefined;
        messages?: {
            [messageId: string]: string;
        } | undefined;
        fixable?: "code" | "whitespace" | undefined;
        schema?: import("json-schema").JSONSchema4 | import("json-schema").JSONSchema4[] | undefined;
        type?: "problem" | "suggestion" | "layout" | undefined;
        hasSuggestions?: boolean | undefined;
    };
    create(context: import("eslint").Rule.RuleContext): import("eslint").Rule.RuleListener;
    schema?: import("json-schema").JSONSchema4 | import("json-schema").JSONSchema4[] | undefined;
};
