import type { ReactNode } from "react"; export declare function CWButton(props: FWButtonProps): JSX.Element; export interface FWButtonProps { style?: any; text?: string; children?: ReactNode; onClick?: () => void; type?: 'primary' | 'secondary'; disabled?: boolean; capitalize?: boolean; textStyle?: any; }