///
import { IconsNames, IconViewProps } from "../../atoms";
import { PlusButtonProps } from "../../molecules";
declare type PlusButtonSize = "small" | "medium" | "large";
declare type ExtendedProps = Omit;
interface Props extends ExtendedProps {
children?: string | React.ReactNode;
disabled?: boolean;
iconName?: IconsNames;
iconNameAntd?: IconViewProps["antName"];
loading?: boolean;
isStretch?: boolean;
size?: PlusButtonSize;
style?: React.CSSProperties;
readonly className?: string;
readonly textClassName?: string;
iconPlacement?: "start" | "end";
iconColor?: string;
onPress?: () => void;
}
declare const MenuButton: ({ disabled, iconName, iconNameAntd, loading, size, className, textClassName, children, style, iconPlacement, iconColor, onPress, ...rest }: Props) => JSX.Element;
export { MenuButton };
//# sourceMappingURL=index.d.ts.map