import { FWButton } from "./FWButton"; import { CWButton } from "./CWButton"; import type { ReactNode } from "react"; declare const Button: { (props: ButtonProps): JSX.Element; FWButton: typeof FWButton; CWButton: typeof CWButton; }; interface ButtonProps { containerStyle?: any; textStyle?: any; text?: string; children?: ReactNode; onClick?: () => void; disabled?: boolean; capitalize?: boolean; } export { Button };