/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ import React from 'react'; export type ButtonProps = { children: React.ReactNode; onClick?: (event: React.MouseEvent) => void; className?: string; type?: 'submit' | 'reset' | 'button'; disabled?: boolean; style?: React.CSSProperties; }; export declare const Button: ({ children, className, onClick, style, type, disabled, }: ButtonProps) => React.JSX.Element;