import { InputLabelProps } from '@mui/material';
import { InputVariation } from './InputLabelBase.variants-helpers.js';

interface InputLabelBaseProps extends InputLabelProps {
    variation?: InputVariation;
    align?: 'left' | 'center' | 'right' | undefined;
}

export type { InputLabelBaseProps };
