import type { TextFieldServerProps } from 'payload'; import type { SlugFieldProps } from '../client/SlugFieldClient.js'; /** * Server component which wraps the `SlugFieldClient` component and handles access-aware readOnly state. */ export declare const SlugField: ({ clientField, defaultValue, fallbackField, pageSlug, path, payload, permissions, readOnly, }: SlugFieldProps & TextFieldServerProps) => import("react").JSX.Element;