import { BoxProps } from "ink"; /** * Provides default box styles based on the terminal output environment. If the * terminal supports TTY (Text Terminal), default styles such as border style * and horizontal padding are applied. * * @returns The default styles for a box. Returns an object containing styles * like `borderStyle` and `paddingX` when the terminal is TTY, otherwise * returns an empty object. */ export default function useDefaultBoxStyles(): Partial;