import { ComponentProps } from 'react'; type Props = { warning?: boolean; secondary?: boolean; href?: string; } & ComponentProps<'button'>; export default function Button({ warning, secondary, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};