type propsType = { type?: "primary" | "default" | "dashed" | "link" | "text" | undefined; htmlType?: "submit" | "button" | "reset" | undefined; onClick?: any; label?: React.ReactNode; className?: string; sx?: any; icon?: any; loading?: boolean; disabled?: boolean; }; export default function BAButton(props: propsType): import("react/jsx-runtime").JSX.Element; export {};