import { StyledProps } from '@kuma-ui/system'; declare const defaultBoxTag = "div"; type BoxSpecificProps = {}; declare const isBoxProps: (propName: unknown) => propName is BoxSpecificProps; declare const boxDefaultProps: StyledProps; declare const boxHandler: (props: BoxSpecificProps) => {}; export { BoxSpecificProps, boxDefaultProps, boxHandler, defaultBoxTag, isBoxProps };