interface SortElements {
    id: string;
    data: Record<string, unknown>;
}
/**
 * Sorts the elements by their after id property chain
 *
 * @param {array} elements
 * @param {string} property
 * @returns {array}
 */
export declare function afterSort(elements: SortElements[], property?: string): SortElements[];
declare const _default: {
    afterSort: typeof afterSort;
};
export default _default;
