import { Theme } from '../../types';
type ItemProps = {
    theme: Theme;
    sx?: React.CSSProperties;
    className?: string;
    dataTestid?: string;
    children?: React.ReactNode;
};
export declare const Item: (props: ItemProps) => import("react/jsx-runtime").JSX.Element;
export {};
