import { ButtonOptions } from "../../types"; interface GenericButtonProps { onClick: () => void; active: boolean; options?: ButtonOptions; top?: string; left?: string; right?: string; svgIconCreator: (color: string) => string; } interface GenericButtonElement { element: HTMLElement; active: boolean; } export default function genericButton(params: GenericButtonProps): GenericButtonElement; export {};