import type { GetPropDefTypes } from '../../props/prop-def'; /** @public */ declare const boxPropDefs: { as: { type: "enum"; values: readonly ["div", "span"]; default: "div"; }; }; /** @public */ type BoxOwnProps = GetPropDefTypes; export { boxPropDefs }; export type { BoxOwnProps };