import { type BoxProps, type ReactNode } from '@roots/bud-support/ink';
interface Props extends BoxProps {
    children?: Array<ReactNode> | ReactNode;
    color?: string;
    contentFlexDirection?: `column` | `row`;
    label?: string;
    value?: string;
}
export declare const LabelBox: ({ children, color, contentFlexDirection, label, value, ...props }: Props) => import("@roots/bud-support/jsx-runtime").JSX.Element;
export {};
