import { IconOptions, TextOptions } from "../../types"; interface ButtonParams { onPressed?: () => void; horizontalMargin?: string; size: string; padding: string; backgroundColor: string; svgIconCreator: (color: string) => string; label: Required; icon: Required; } export default function button(params: ButtonParams): HTMLElement; export {};