export type ObjectItemProps = { label: string; labelTestId?: string; subtitle?: string | React.JSX.Element; isHidden?: boolean; defaultIsHidden?: boolean; onIsHiddenChange?: (isHidden: boolean) => void; thumbnailUrl?: string; thumbnailCheckerboard?: boolean; thumbnailCover?: boolean; loading?: boolean; dragHandleProps?: React.ComponentProps<"span">; buttonProps?: React.ComponentProps<"button">; bottomRightIcon?: React.ReactNode; } & Omit, "children">; export declare function ObjectItem({ label, labelTestId, subtitle, isHidden: value, defaultIsHidden: defaultValue, onIsHiddenChange: onValueChange, thumbnailUrl, thumbnailCheckerboard, thumbnailCover, loading, dragHandleProps, buttonProps, className, bottomRightIcon, ref, ...rest }: ObjectItemProps): import("react").JSX.Element; export declare namespace ObjectItem { var displayName: string; } //# sourceMappingURL=ObjectItem.d.ts.map