export interface PopItemProps {
    title?: string;
    extra?: string;
    description?: string;
    isDivider?: boolean;
    onClick?: () => void;
}
export declare const PopItems: (props: {
    children: React.ReactNode;
    items: PopItemProps[];
    footer?: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
