import { PressableProps } from "react-native"; import { ReactNode } from "react"; //#region src/primitives/actionBar/ActionBarFeedbackNegative.d.ts type ActionBarFeedbackNegativeProps = Omit & { children: ReactNode | ((props: { isSubmitted: boolean; }) => ReactNode); }; declare const ActionBarFeedbackNegative: ({ children, ...pressableProps }: ActionBarFeedbackNegativeProps) => import("react").JSX.Element; //#endregion export { ActionBarFeedbackNegative, ActionBarFeedbackNegativeProps }; //# sourceMappingURL=ActionBarFeedbackNegative.d.ts.map