/// import { ViewProps } from "react-native"; import { ShadowLevel } from "../atoms/AnimatedWrapper"; interface SleekPressableProps extends ViewProps { onPress: (value?: any) => void; onLongPress?: (value?: any) => void; pressedBackgroundColor?: string; pressedBackgroundBorderRadius?: number; flex?: number; minWidth?: number; isAnimation?: boolean; elevationLevel?: ShadowLevel; } declare const ZSPressable: ({ onPress, onLongPress, isAnimation, pressedBackgroundColor, pressedBackgroundBorderRadius, flex, minWidth, elevationLevel, ...props }: SleekPressableProps) => import("react").JSX.Element; export default ZSPressable; //# sourceMappingURL=index.d.ts.map