import { FlexProps, TextProps } from '@chakra-ui/react'; import { ReactNode } from 'react'; export declare function LabelValueStack(props: FlexProps): import("react").JSX.Element; export declare function LabelValueRow({ label, value, }: { label: ReactNode; value?: ReactNode; }): import("react").JSX.Element; /** Truncates text to one line. If overflowing displays full text as tooltip on hover */ export declare function LabelValueAutoTooltip({ value, ...rest }: TextProps & { value: ReactNode; }): import("react").JSX.Element;