import { ReactElement } from 'react'; import { ButtonProps } from '@mui/material'; export interface EditVariablesButtonProps 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 function EditVariablesButton({ variant, label, color, fullWidth, }: EditVariablesButtonProps): ReactElement; //# sourceMappingURL=EditVariablesButton.d.ts.map