import type { Breadcrumb } from '../../../types/Breadcrumb.js'; /** * Hook to get and set the breadcrumbs of a document. * * The useFormFields hook is not used because of the following payload issue: https://github.com/payloadcms/payload/issues/8146 */ export declare const useBreadcrumbs: () => { getBreadcrumbs: () => Breadcrumb[]; setBreadcrumbs: (newBreadcrumbs: Breadcrumb[]) => void; };