import type { PressableProps, PressableStateCallbackType, StyleProp, ViewStyle } from 'react-native'; export interface UsePressableContainerStyleProps { /** * @description * Either view styles or a function representing override styles for the pressed state */ overrideStyle: PressableProps['style']; /** * @description * Pass-through view styles, typically includes theme, disabled, variant styles */ containerStyle?: StyleProp; /** * @description * Pass-through view styles for the pressed state applied before the override styles */ pressedStyle?: StyleProp; } export declare const usePressableContainerStyles: ({ overrideStyle, containerStyle, pressedStyle, }: UsePressableContainerStyleProps) => ({ pressed, }: PressableStateCallbackType) => StyleProp;