/// import { ViewProps } from "reactjs-view"; import { IconsNames, IconViewProps } from "../../atoms/iconView"; declare type PlusButtonSize = "small" | "medium" | "large"; export interface PlusButtonProps extends ViewProps { iconAntName?: IconViewProps["antName"]; theme?: "primary" | "secondary" | "negative"; mode?: "contained" | "outlined" | "text"; disabled?: boolean; iconName?: IconsNames; iconPlacement?: "start" | "end"; iconColor?: string; size?: PlusButtonSize; loading?: boolean; height?: number; style?: React.CSSProperties; } declare const PlusButton: ({ iconAntName, mode, theme, disabled, iconPlacement, href, onPress, children, className, iconName, iconColor, loading, size, height, style, ...rest }: PlusButtonProps) => JSX.Element; export { PlusButton }; //# sourceMappingURL=index.d.ts.map