import type { BaseProps } from '../../BaseProps';
export type PFlyoutMultilevelItemProps = BaseProps & {
    /**
     * Private property set by the component itself.
     */
    cascade?: boolean;
    /**
     * Unique identifier which controls if this item should be shown when the active-identifier on the flyout-multilevel is set to this value.
     */
    identifier: string;
    /**
     * Label of the item.
     */
    label?: string;
    /**
     * Private property set by the component itself.
     */
    primary?: boolean;
    /**
     * Private property set by the component itself.
     */
    secondary?: boolean;
};
export declare const PFlyoutMultilevelItem: import("react").ForwardRefExoticComponent<import("react").DOMAttributes<{}> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
    /**
     * Private property set by the component itself.
     */
    cascade?: boolean;
    /**
     * Unique identifier which controls if this item should be shown when the active-identifier on the flyout-multilevel is set to this value.
     */
    identifier: string;
    /**
     * Label of the item.
     */
    label?: string;
    /**
     * Private property set by the component itself.
     */
    primary?: boolean;
    /**
     * Private property set by the component itself.
     */
    secondary?: boolean;
} & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;
