mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
12 lines
583 B
TypeScript
12 lines
583 B
TypeScript
/// <reference types="react" />
|
|
import { FormControlLabelProps as MuiFormControlLabelProps } from '@material-ui/core/FormControlLabel';
|
|
import { FieldProps } from 'formik';
|
|
import { CheckboxProps } from './Checkbox';
|
|
export interface CheckboxWithLabelProps extends FieldProps, CheckboxProps {
|
|
Label: Omit<MuiFormControlLabelProps, 'checked' | 'name' | 'value' | 'control'>;
|
|
}
|
|
export declare function CheckboxWithLabel<Val = unknown>({ Label, ...props }: CheckboxWithLabelProps): JSX.Element;
|
|
export declare namespace CheckboxWithLabel {
|
|
var displayName: string;
|
|
}
|