import type { BaseProps } from '../../BaseProps';
export type PDrilldownItemProps = BaseProps & {
    /**
     * Private property set by the component itself.
     * @default false
     */
    cascade?: boolean;
    /**
     * Sets the unique identifier matched against the drilldown's `activeIdentifier` to determine if this item is shown.
     */
    identifier: string;
    /**
     * Sets the text used for the back button, sticky header, and cascade button that navigates into this navigation level.
     */
    label?: string;
    /**
     * Private property set by the component itself.
     * @default false
     */
    primary?: boolean;
    /**
     * Private property set by the component itself.
     * @default false
     */
    secondary?: boolean;
};
export declare const PDrilldownItem: import("react").ForwardRefExoticComponent<Omit<import("react").DOMAttributes<{}>, "onChange" | "onInput" | "onToggle"> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "inputMode" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
    /**
     * Private property set by the component itself.
     * @default false
     */
    cascade?: boolean;
    /**
     * Sets the unique identifier matched against the drilldown's `activeIdentifier` to determine if this item is shown.
     */
    identifier: string;
    /**
     * Sets the text used for the back button, sticky header, and cascade button that navigates into this navigation level.
     */
    label?: string;
    /**
     * Private property set by the component itself.
     * @default false
     */
    primary?: boolean;
    /**
     * Private property set by the component itself.
     * @default false
     */
    secondary?: boolean;
} & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;
