import { FC, PropsWithChildren } from "react"; type ButtonTheme = "default" | "primary" | "alert"; export type ButtonProps = PropsWithChildren<{ onClick?: () => void; wide?: boolean; theme?: ButtonTheme; disabled?: boolean; height?: string; size?: "small" | "medium"; type?: "submit" | "button"; noLayout?: boolean; }>; export declare const ButtonGroup: FC; export declare const Button: FC; export {}; //# sourceMappingURL=Button.d.ts.map