import { default as React, ReactNode } from 'react'; import { ButtonProps, ButtonIconPosition } from '../../atoms/Button'; export interface DropdownButtonProps extends Omit { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Replace the default rendered element with the provided child element, merging their props and behavior. */ asChild?: boolean; /** * Boolean that represents a loading state. */ loading?: boolean; /** * Specifies a label for loading state. */ loadingLabel?: string; /** * @deprecated * A React component that will be rendered as an icon. */ icon?: ReactNode; /** * @deprecated * Specifies where the icon should be positioned */ iconPosition?: ButtonIconPosition; } declare const DropdownButton: React.ForwardRefExoticComponent>; export default DropdownButton; //# sourceMappingURL=DropdownButton.d.ts.map