/// <reference types="react" />
import { ItemProps } from './type';
declare const Item: {
    ({ as, className, children, ...props }: ItemProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
    displayName: string;
    Group: {
        ({ as, divided, className, children, ...props }: import("./type").ItemGroupProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
        displayName: string;
    };
    Content: {
        ({ as, verticalAlign, className, children, ...props }: import("./type").ItemContentProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
        displayName: string;
    };
    Header: {
        ({ as, className, content, children, ...props }: import("./type").ItemHeaderProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
        displayName: string;
    };
    Description: {
        ({ as, className, content, children, ...props }: import("./type").ItemDescriptionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
        displayName: string;
    };
    Meta: {
        ({ as, className, content, children, ...props }: import("./type").ItemMetaProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
        displayName: string;
    };
    Extra: {
        ({ as, className, content, children, ...props }: import("./type").ItemExtraProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
        displayName: string;
    };
};
export default Item;
