8 lines
354 B
TypeScript
8 lines
354 B
TypeScript
import * as React from 'react';
|
|
import { CheckboxProps } from '../Checkbox';
|
|
interface CardCheckboxProps extends CheckboxProps {
|
|
}
|
|
declare const CardCheckbox: React.ForwardRefExoticComponent<CardCheckboxProps & React.RefAttributes<HTMLButtonElement>>;
|
|
export { CardCheckbox };
|
|
export type { CardCheckboxProps };
|
|
//# sourceMappingURL=CardCheckbox.d.ts.map
|