import { ReactNode } from 'react'; type ButtonProps = { children: ReactNode; type?: 'primary' | 'secondary'; disabled?: boolean; onClick?: () => void; title?: string; }; /** @internal */ export declare const Button: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element; export {};