import { Comment } from "estree";
import { TypeAnnotationOption } from "../utilities/sort-utils.js";
export interface SortTSPropertySignaturesOptions {
    groups?: TypeAnnotationOption[];
}
export declare function sortTSPropertySignatures(properties: any, comments: Comment[], fileContents: string, options: SortTSPropertySignaturesOptions): string;
