import type { FieldHook } from 'payload'; /** Hooks which adjusts the slug to make sure the slug is still unique after duplication. */ export declare const beforeDuplicateSlug: FieldHook; /** Hooks which adjusts the title to indicate this is a copy. */ export declare const beforeDuplicateTitle: FieldHook; /** Hook which ensures that if the root page is duplicated, the new page has not set isRootPage to true. */ export declare const beforeDuplicateIsRootPage: FieldHook;