import type { SourceCode } from 'eslint';
import type { CallExpression } from './ast/node-types.ts';
export type TitleDescription = {
    readonly kind: 'dynamic';
} | {
    readonly kind: 'missing';
} | {
    readonly kind: 'static';
    readonly value: string;
};
export declare function getTitleDescription(sourceCode: Readonly<SourceCode>, mochaCallExpression: Readonly<CallExpression>): TitleDescription;
//# sourceMappingURL=title-description.d.ts.map