import { type StyledProps } from "./Styled"; /** * moaui Styled Icon Button * * @param props - children, disabled, iconName, color, width, height, onClick, transparent, transparentColor, border * @example * {}} * transparent={false} * transparentColor="" * border={true || false} * > * * * @returns JSX.Element */ declare const IconButton: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { disabled: boolean; color: import("@midasit-dev/moaui-components-v1").CustomUnionType; iconName: string; width: string; height: string; onClick: () => void; transparent: boolean; transparentColor: string; border: boolean; }; export default IconButton; export { type StyledProps as IconButtonProps, SampleProps as IconButtonSample }; //# sourceMappingURL=index.d.ts.map