import type { GestureResponderHandlers, PressableProps, StyleProp, ViewProps, ViewStyle, } from 'react-native'; export type HandleBarProps = ViewProps & { /** Callback fired when the handlebar is pressed via accessibility action */ onAccessibilityPress?: () => void; /** * The HandleBar can be rendered inside or outside the drawer. * @default 'outside' */ variant?: 'inside' | 'outside'; /** Pan responder handlers for drag-to-dismiss functionality. */ panHandlers?: GestureResponderHandlers; styles?: { root?: PressableProps['style']; handle?: StyleProp; }; }; export declare const HandleBar: { ({ onAccessibilityPress, variant, panHandlers, style, styles, ...props }: HandleBarProps): import('react/jsx-runtime').JSX.Element; displayName: string; }; //# sourceMappingURL=HandleBar.d.ts.map