import { BaseBoxPropsWithRole } from '../../shared/box'; type OverflowKeyword = 'auto' | 'hidden'; export interface ScrollBoxProps extends Omit { /** * Sets the overflow behavior of the element. * * `hidden`: clips the content when it is larger than the element’s container and the element will not be scrollable in that axis. * `auto`: clips the content when it is larger than the element’s container and make it scrollable in that axis. * * 1-to-2-value syntax is supported but note that, contrary to the CSS, it uses flow-relative values and the order is: * * - 2 values: `block inline` * * @default 'auto' * * @see https://developer.mozilla.org/en-US/docs/Web/CSS/overflow */ overflow?: OverflowKeyword | `${OverflowKeyword} ${OverflowKeyword}`; } export {};