import React from "react"; /** * Button * @author rivertwilight */ export interface BaseButtonProps { variant?: "outline" | "default" | "secondary"; component: string | JSX.Element; disabled?: boolean; children: React.ReactNode; } export type NativeButtonProps = { to?: string; href?: string; onClick?: React.MouseEventHandler; } & BaseButtonProps & Omit, "type" | "onClick">; declare const _default: ({ children, className, variant, component, LinkComponent, disabled, type, ...other }: NativeButtonProps) => React.JSX.Element; export default _default;