import React from 'react'; import type { ViewStyle } from 'react-native'; import type { ElementAnimations } from 'mythik'; interface BoxProps { surface?: 'card' | 'modal'; style?: ViewStyle; _tokens?: Record; children?: React.ReactNode; testID?: string; animations?: ElementAnimations | null; animationStaggerIndex?: number; onHoverIn?: () => void; onHoverOut?: () => void; onPressIn?: () => void; onPressOut?: () => void; onFocus?: () => void; onBlur?: () => void; } export declare function Box({ surface, style, _tokens, children, testID, animations, animationStaggerIndex, onHoverIn, onHoverOut, onPressIn, onPressOut, onFocus, onBlur, }: BoxProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=box.d.ts.map