import React from 'react'; import type { ViewStyle } from 'react-native'; interface ButtonProps { label?: string; variant?: 'primary' | 'secondary' | 'destructive' | 'ghost'; disabled?: boolean; style?: ViewStyle; _tokens?: Record; children?: React.ReactNode; onClick?: () => void; onPress?: () => void; testID?: string; } export declare function Button({ label, variant, disabled, style, _tokens, children, onClick, onPress, testID }: ButtonProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=button.d.ts.map