import * as React from 'react'; import type { LegacyBaseButtonProps, LegacyBorderlessButtonProps, LegacyRawButtonProps, LegacyRectButtonProps } from './GestureButtonsProps'; import { type ButtonProps } from './GestureHandlerButton'; declare const LegacyRawButtonInner: { (props: LegacyRawButtonProps & { needsOffscreenAlphaCompositing?: boolean; } & import("..").NativeViewGestureHandlerProps & { ref?: React.Ref | null> | undefined; }): React.JSX.Element; displayName: any; }; /** * @deprecated use `RawButton` instead */ export declare const LegacyRawButton: (props: Omit, "needsOffscreenAlphaCompositing">) => React.JSX.Element; /** * @deprecated use `BaseButton` instead */ export declare const LegacyBaseButton: ({ ref, ...props }: Omit & { ref?: React.Ref> | undefined; }) => React.JSX.Element; /** * @deprecated use `RectButton` instead */ export declare const LegacyRectButton: ({ ref, ...props }: Omit & { ref?: React.Ref> | undefined; }) => React.JSX.Element; /** * @deprecated use `BorderlessButton` instead */ export declare const LegacyBorderlessButton: ({ ref, ...props }: Omit & { ref?: React.Ref> | undefined; }) => React.JSX.Element; /** * @deprecated use `PureNativeButton` instead */ export declare const LegacyPureNativeButton: ({ ref, ...props }: Omit) => React.JSX.Element; export {}; //# sourceMappingURL=GestureButtons.d.ts.map