import React from 'react'; import type { FC } from 'react'; import { Animated } from 'react-native'; import type { TextProps, StyleProp, TextStyle, ViewProps, ViewStyle } from 'react-native'; export interface SwipeButtonUnderlayTextProps { /** * The text that will be displayed in the underlay container */ underlayTitle?: string; /** * Additional props for the underlay title text */ underlayTitleExtraTextProps?: TextProps; /** * Additional styling for the underlay title text */ underlayTitleStyle?: StyleProp; /** * Additional props for the underlay title container */ underlayTitleContainerExtraViewProps?: ViewProps; /** * Additional styling for the underlay title container */ underlayTitleContainerStyle?: StyleProp; /** * Height of the underlay title container */ height?: number; /** * An JSX element you can define to replace the underlay title default component. Using this will omit the others title props */ underlayTitleElement?: React.JSX.Element; } interface PrivateProps { animation?: Animated.Value; } declare const SwipeButtonUnderlayText: FC; export default SwipeButtonUnderlayText; //# sourceMappingURL=SwipeButtonUnderlayText.d.ts.map