import { Touchable } from 'react-native'; import type { StyledComponentProps } from '../types/styled.types'; declare function useBuildStyledComponent({ className, groupID, parentID, style, tw, children, ...restProps }: StyledComponentProps): { componentInteractionHandlers: Touchable & import("react-native").PressableProps; focusHandlers: import("./useComponentInteractions").InternalTouchable; componentStyles: any; componentChilds: any; currentGroupID: string; }; export { useBuildStyledComponent };