import type { Image } from '../../Image.js';
import type { Brief } from './getBriefDescriptors.js';
export interface GetBriefOptions {
    centroidPatchDiameter?: number;
    bestKptRadius?: number;
    minScore?: number;
}
/**
 * Get the keypoints and corresponding descriptors for an image.
 * @param image - Image to process.
 * @param options - Get brief options.
 * @returns The Brief (keypoints and corresponding descriptors).
 */
export declare function getBrief(image: Image, options?: GetBriefOptions): Brief;
//# sourceMappingURL=getBrief.d.ts.map