import type React from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; import { type StyledProps } from "../StyledProps"; import type { DefaultNDSThemeType } from "../theme"; type DropdownButtonProps = React.ComponentPropsWithRef<"button"> & StyledProps & { variant?: ComponentVariant; color?: string; theme?: DefaultNDSThemeType; hoverColor?: string; bgHoverColor?: string; }; declare const DropdownButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLButtonElement>, DropdownButtonProps>> & string; export default DropdownButton;