import { ButtonProps } from '@mui/material'; import { ReactElement } from 'react'; export interface AddPanelButtonProps extends Pick { /** * The variant to use to display the button. */ variant?: 'text' | 'outlined'; /** * The color to use to display the button. */ color?: 'primary' | 'secondary'; /** * The label used inside the button. */ label?: string; } export declare const AddPanelButton: ({ variant, color, label, fullWidth, }: AddPanelButtonProps) => ReactElement; //# sourceMappingURL=AddPanelButton.d.ts.map