import { IconButtonProps, StackProps } from '@mui/material';
import { MouseEventHandler } from 'react';
interface ListIconModel {
    icon: JSX.Element;
    type?: 'url' | 'button';
    url?: string;
    onClick?: MouseEventHandler<HTMLButtonElement>;
    iconProps?: IconButtonProps;
}
export interface IConButtonOutputPropsModel {
    label?: string;
    showBorder?: boolean;
    showBoxShadow?: boolean;
    backgroundColor?: boolean;
    showDivider?: boolean;
    listIcon?: Array<ListIconModel>;
    iconProps?: IconButtonProps;
    BoxIconsProps?: StackProps;
}
export {};
