import { ReactElement } from "react"; import { GestureResponderEvent } from "react-native"; import { IButtonProps } from "./types"; /** * Hook to generate the content of the ripple effect and the function to start the animation * * @param {{ testID: string, disableRipple: boolean, disabled: boolean, rippleColor: string, rippleClassName: string, rippleOpacity: number, rippleDuration: number }} props - The props for the ripple effect * * @returns {{ rippleContent?: ReactElement | null; startRipple?: (event: GestureResponderEvent) => void }} - The content of the ripple effect and the function to start the animation */ export declare function useGetRippleContent({ testID, disableRipple, disabled, rippleColor, rippleClassName }: Partial & any): { rippleContent?: ReactElement | null; startRipple?: (event: GestureResponderEvent) => void; };