export type InfoListType = Array<{
    title: string;
    value: React.ReactNode;
}>;
type Props = {
    info: InfoListType;
};
export declare const VuiInfoList: ({ info }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
