import type { InferSchemaOption } from '../rule-options.ts';
export declare const allowMochaCallOptionSchema: {
    readonly type: "object";
    readonly properties: {
        readonly allow: {
            readonly type: "array";
            readonly items: {
                readonly type: "string";
            };
        };
    };
    readonly additionalProperties: false;
};
type AllowMochaCallOption = InferSchemaOption<typeof allowMochaCallOptionSchema>;
export type ResolvedAllowMochaCallOption = AllowMochaCallOption & {
    readonly allow: readonly string[];
};
export declare const defaultAllowMochaCallOption: ResolvedAllowMochaCallOption;
export declare function normalizeMochaCallName(value: unknown): string;
export {};
//# sourceMappingURL=mocha-call-allowance.d.ts.map