import { ReactElement, FunctionComponent } from 'react';
import { SxProps } from '@mui/material';
import { Theme } from '@mui/material/styles';
import { InputVariation } from '../InputLabelBase/InputLabelBase.variants-helpers.js';

interface InputLabelProps {
    variation?: InputVariation;
    align?: 'left' | 'center' | 'right' | undefined;
    sx?: SxProps<Theme>;
    children?: ReactElement | string;
    disabled?: boolean;
    error?: boolean;
    required?: boolean;
}
declare const InputLabel: FunctionComponent<InputLabelProps>;

export { InputLabel as default };
export type { InputLabelProps };
