import { Aspect } from "@atomist/sdm-pack-fingerprint";
import { ContentClassifier } from "./ContentClassifier";
export declare const CodeOfConductType = "code-of-conduct";
export interface CodeOfConductData {
    /**
     * Title inferred from the code of conduct, if it was possible to do so
     */
    title?: string;
}
/**
 * Find a code of conduct in a repository if possible.
 * Returns no fingerprint if the repository lacks a code of conduct file.
 * @constructor
 */
export declare function codeOfConduct(opts?: {
    classifier: ContentClassifier;
}): Aspect<CodeOfConductData>;
//# sourceMappingURL=codeOfConduct.d.ts.map