import { PropsWithChildren } from "react"; export declare type ButtonProps = PropsWithChildren<{ id: string; onClick?: () => void; primary?: boolean; disabled?: boolean; type?: "submit" | "reset" | "button"; }>;