import 'rollup-plugin-inject-process-env'; import { FC, PropsWithChildren } from "react"; export interface ButtonProps { readonly className?: string; readonly expand?: boolean; onClick(): void; } export declare const Button: FC>;